Subversion Repositories NedoOS

Rev

Rev 922 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
930 alone 1
TOOLS		= asm comp exp tok
2
PROGS		= asm batch comp diff exp movedisk nedodel nedogift sprtest tok
3
TRDSOURCES	= batch/basics.trd
4
NEDOTRD		= ../_sdk/nedotrd.bin
5
 
6
all: tools install-tools ${PROGS}
7
 
8
.PHONY: ${PROGS}
9
 
10
${PROGS}:
11
	${MAKE} -w -C $@
12
 
13
tools:
14
	for d in ${TOOLS}; do ${MAKE} -w -C $$d tools; done
15
 
16
clean-tools:
17
	for d in ${TOOLS}; do ${MAKE} -w -C $$d clean-tools; done
18
 
19
install-tools:
20
	for d in ${TOOLS}; do ${MAKE} -w -C $$d install-tools; done
21
 
22
install-doc:
23
	for d in ${PROGS}; do ${MAKE} -w -C $$d install-doc; done
24
 
25
clean: clean-tools
26
	for d in ${PROGS}; do ${MAKE} -w -C $$d clean; done
27
	rm -f test.trd
28
 
29
install: all
30
	for d in ${PROGS}; do ${MAKE} -w -C $$d install; done
31
 
32
trd: ${TRDSOURCES} all
33
	for d in ${PROGS}; do ${MAKE} -w -C $$d trd; done
34
	${NEDOTRD} batch/basics.trd -eh batch/batch.b
35
	${NEDOTRD} test.trd -n
36
	${NEDOTRD} test.trd -ah batch/batch.b
37
	${NEDOTRD} test.trd -s 64000 -ac batch/batch
38
	${NEDOTRD} test.trd -a asm/compile.bat
39
	${NEDOTRD} test.trd -a comp/nedotok
40
	${NEDOTRD} test.trd -a tok/nedotok
41
	${NEDOTRD} test.trd -a asm/nedoasm
42
	${NEDOTRD} test.trd -a diff/diff
43
	${NEDOTRD} test.trd -a _sdk/str.h
44
	${NEDOTRD} test.trd -a _sdk/io.h
45
	${NEDOTRD} test.trd -a _sdk/emit.h
46
	${NEDOTRD} test.trd -a _sdk/emit.c
47
	${NEDOTRD} test.trd -a _sdk/fmttg.h
48
	${NEDOTRD} test.trd -a _sdk/fmtz80.h
49
	${NEDOTRD} test.trd -a asm/asm.c
50
	${NEDOTRD} test.trd -a asm/asmloop.c
51
	${NEDOTRD} test.trd -a asm/asmf_z80.c
52
	${NEDOTRD} test.trd -a asm/asmj.c
53
	${NEDOTRD} test.trd -a asm/asmj_z80.c
54
	${NEDOTRD} test.trd -a asm/asm.s
55
	${NEDOTRD} test.trd -a _sdk/lib.i
56
	${NEDOTRD} test.trd -a _sdk/str.i
57
	${NEDOTRD} test.trd -a _sdk/iofast.i
58
	${NEDOTRD} test.trd -a _sdk/io.c
59