game-source/ParoxysmII/source/Makefile
Jeff Teunissen 5b81f01e3b Okay, this is the first import of my recovered (thanks, Despair!) PoxII tree.
It works, and is playable, but you need to symlink source/config.qw to
source/config.qw -- otherwise it won't build a qwprogs.dat for you. :)
2003-10-22 09:24:50 +00:00

23 lines
549 B
Makefile

SRC= buttons.r builtins.r client.r combat.r defs.r doors.r dynlight.r \
flash.r items.r misc.r observe.r plats.r player.r poxdefs.r sectrig.r \
server.r shields.r specfx.r spectate.r subs.r targid.r triggers.r \
wall.r weapons.r world.r
HEADERS = client.rh paroxysm.rh config.rh
RFLAGS += -Wall -Werror -g
INSTALLDIR = $(HOME)/.quake/paroxysm/
all: qwprogs.dat
qwprogs.dat: $(SRC) $(HEADERS) progs.src Makefile
qfcc $(RFLAGS)
clean:
-rm -f *.dat *.sym progdefs.h
install: qwprogs.dat
-cp qwprogs.* $(INSTALLDIR)
.PHONY: clean install