repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
scripts: Move more scripts into it
[lcapit-junk-code.git]
/
games
/
allegro-demo
/
Makefile
blob
35f6324bb807e7fa7fcc4185c0dfec22ec7e4608
1
2
BIN
=
allegro-test
3
LIBS
=$(
shell
allegro-config
--
libs
)
4
5
all
: $(
BIN
)
6
7
allegro-test
:
allegro-test.c Tux.bmp gnu.bmp
8
cc
-
o
$
@
$< $(
LIBS
)
9
10
clean
:
11
rm
-
f
$(
BIN
) *
.o
*
~