projects
/
dosdemo
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
foo
[dosdemo]
/
libs
/
anim
/
GNUmakefile
1
src = $(wildcard src/*.c)
2
obj = $(src:.c=.o)
3
alib = libanim.a
4
5
CFLAGS = -m32 -Wno-main -g -I.. -I../../src
6
7
$(alib): $(obj)
8
$(AR) rcs $@ $(obj)
9
10
.PHONY: clean
11
clean:
12
rm -f $(obj) $(alib)