diff --git a/tools/qwaq/Makefile b/tools/qwaq/Makefile index c46261211..ada75fea9 100644 --- a/tools/qwaq/Makefile +++ b/tools/qwaq/Makefile @@ -15,11 +15,14 @@ SRC=main.c builtins.c OBJ=$(patsubst %,%.o,$(basename $(SRC))) DEP=$(patsubst %.o,%.d,$(OBJ)) -all: $(EXE) +all: $(EXE) $(EXE).dat $(EXE): $(OBJ) $(LIBS) $(CC) $(LDFLAGS) -o $@ $^ -lQFgamecode -lQFutil +$(EXE).dat: progs.src *.qc + qfcc + clean: rm -f $(EXE) *.o *.d core *.dat progdefs.h