mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
29 lines
485 B
Makefile
29 lines
485 B
Makefile
EXE=qwaq
|
|
|
|
MAKEDEPS=$(CC) -MM $(CPPFLAGS) $< | sed -e 's/$*\.o:*/$*\.o $@:/g' > $@
|
|
|
|
CFLAGS+=-Wall -Werror -g -O2
|
|
CPPFLAGS+=
|
|
LIBS=
|
|
vpath %.a
|
|
|
|
SRC=main.c builtins.c
|
|
|
|
%.d: %.c
|
|
$(MAKEDEPS)
|
|
|
|
OBJ=$(patsubst %,%.o,$(basename $(SRC)))
|
|
DEP=$(patsubst %.o,%.d,$(OBJ))
|
|
|
|
all: $(EXE) $(EXE).dat
|
|
|
|
$(EXE): $(OBJ) $(LIBS)
|
|
$(CC) $(LDFLAGS) -o $@ $^ -lQFgamecode -lQFutil
|
|
|
|
$(EXE).dat: progs.src *.qc
|
|
qfcc --warn=error --debug
|
|
|
|
clean:
|
|
rm -f $(EXE) *.o *.d core *.dat *.sym progdefs.h
|
|
|
|
-include $(DEP)
|