projects
/
dosdemo
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed loading screen. regression in blitfb
[dosdemo]
/
tools
/
csprite
/
Makefile
1
src = $(wildcard src/*.c)
2
obj = $(src:.c=.o)
3
bin = csprite
4
5
CFLAGS = -pedantic -Wall -g
6
LDFLAGS = -lpng -lz
7
8
$(bin): $(obj)
9
$(CC) -o $@ $(obj) $(LDFLAGS)
10
11
.PHONY: clean
12
clean:
13
rm -f $(obj) $(bin)