mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
e4d99195bf
This fixes: e1m4: - The secret doors in the room with the five quake-logo buttons on the floor (when open). e2m2: - The platform in the water behind the gold key door (when down). - The wallpiece that pushes the player into the gold key room (when "closed"). git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1134 af15c1b1-3010-417e-b628-4374ebc0bcbd
18 lines
262 B
Makefile
18 lines
262 B
Makefile
INPUT := gfx/conback.lmp \
|
|
maps/e1m1.ent \
|
|
maps/e1m2.ent \
|
|
maps/e1m4.ent \
|
|
maps/e2m2.ent \
|
|
maps/e2m3.ent \
|
|
maps/e2m7.ent \
|
|
default.cfg
|
|
|
|
OUTPUT := quakespasm.pak
|
|
|
|
$(OUTPUT): $(INPUT)
|
|
./mkpak.sh $(INPUT) > $(OUTPUT)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(OUTPUT)
|
|
|