Files
wernermisc/qpkg/Makefile
T

12 lines
185 B
Makefile

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