1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-15 01:32:49 +02:00
wernermisc/qpkg/Makefile
2010-11-19 19:17:47 -03:00

13 lines
214 B
Makefile

CFLAGS = -Wall -Wshadow -g -O
# -O, so that we get data flow analysis, which helps to find more bugs
#LDFLAGS=-pg
OBJS = gobble.o id.o prereq.o qpkg.o jrb.o jval.o
all: qpkg
qpkg: $(OBJS)
clean:
rm -f $(OBJS)