Files
wernermisc/qpkg/Makefile
T

16 lines
283 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
OBJS_rbtest = rbtest.o jrb.o jval.o
all: qpkg rbtest
qpkg: $(OBJS)
rbtest: $(OBJS_rbtest)
clean:
rm -f $(OBJS) $(OBJS_rbtest)