# # Makefile to generate the following test wads: # # - ldtypes1.wad: E1M1, 32,768 linedefs, types 0 through 32,767 # # - ldtypes2.wad: E1M1, 32,768 linedefs, types -1 through -32,768 # # See the comments at the top of mkldtypes for details. # # You need Perl, mkldtypes and wadlc from Xwadtools # 20010615 with the wadlc-2004-01-29.diff patch applied. # # ftp://3darchives.in-span.net/pub/idgames/source/xwadtools-20010615.tar.gz # http://www.teaser.fr/~amajorel/xwadtools/patches/wadlc-2004-01-29.diff # # AYM 2004-01-29 # WADS = ldtypes1.wad ldtypes2.wad all: $(WADS) clean: rm -f $(WADS) ldtypes1.wad: ./mkldtypes | wadlc - $@ ldtypes2.wad: ./mkldtypes -n | wadlc - $@