mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-03 06:20:57 +00:00
342c135a12
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@971 af15c1b1-3010-417e-b628-4374ebc0bcbd
12 lines
160 B
Makefile
12 lines
160 B
Makefile
INPUT := gfx/conback.lmp \
|
|
default.cfg
|
|
|
|
OUTPUT := quakespasm.pak
|
|
|
|
$(OUTPUT): $(INPUT)
|
|
./mkpak.sh $(INPUT) > $(OUTPUT)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(OUTPUT)
|
|
|