mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
15 lines
304 B
Makefile
15 lines
304 B
Makefile
CPP=../../scripts/simplecpp
|
|
|
|
all: ../fdm_deh.lmp ../p1_deh.lmp ../p2_deh.lmp
|
|
|
|
../fdm_deh.lmp: dehacked.txt
|
|
$(CPP) -DFREEDM < $< > $@
|
|
|
|
../p1_deh.lmp: dehacked.txt
|
|
$(CPP) -DPHASE1 < $< > $@
|
|
|
|
../p2_deh.lmp: dehacked.txt
|
|
$(CPP) -DPHASE2 < $< > $@
|
|
|
|
clean:
|
|
$(RM) ../fdm_deh.lmp ../p1_deh.lmp ../p2_deh.lmp
|