~eda-qa/dhlib/main

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include parent.makefile

HAXECP += -cp $(abspath .)

HXSRCPATH=$(abspath .)
ALLSRC:=$(HXSRC) $(HXLIBSRC)

all: WordTest.swf Worgle.swf AllWordsTest.n

test: AllWordsTest.n
	neko AllWordsTest.n
	
WordTest.swf: $(ALLSRC)
	$(STDFLASH) -main words.test.WordTest

Worgle.swf: $(ALLSRC)
	$(STDFLASH) -main words.worgle.Main -D gamedebug
	
AllWordsTest.n: $(ALLSRC)
	$(STDNEKO) -main words.test.TestWrapper