Makefile
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!gmake
ifndef SIMTOOLS
SIMTOOLS = ..
endif
include $(SIMTOOLS)/makedefs
simos:
(cd misc; $(MAKE) )
(cd stats; $(MAKE) )
(cd tcl; $(MAKE) )
(cd symbols; $(MAKE) )
ifndef NO_EMBRA
(cd dcg_support; $(MAKE))
endif
simos64:
(cd misc; $(MAKE) simos64)
(cd stats; $(MAKE) simos64)
(cd tcl; $(MAKE) simos64)
(cd symbols; $(MAKE) simos64)
ifndef NO_EMBRA
(cd dcg_support; $(MAKE) simos64)
endif
simos-x86:
(cd misc; $(MAKE) simos-x86)
(cd stats; $(MAKE) simos-x86)
(cd tcl; $(MAKE) simos-x86)
(cd symbols; $(MAKE) simos-x86)
solo:
(cd misc; $(MAKE) solo)
(cd stats; $(MAKE) solo)
(cd tcl; $(MAKE) solo)
(cd symbols; $(MAKE) solo)
solo-aint:
(cd misc; $(MAKE) solo)
(cd stats; $(MAKE) solo)
(cd tcl; $(MAKE) solo)
(cd symbols; $(MAKE) solo)
simos-aa:
(cd misc; $(MAKE) simos-aa )
(cd stats; $(MAKE) simos-aa )
(cd tcl; $(MAKE) simos-aa )
(cd symbols; $(MAKE) simos-aa )
(cd dcg_support; $(MAKE) simos-aa)
clean:
(cd misc && $(MAKE) -f Makefile clean)
(cd stats && $(MAKE) -f Makefile clean)
(cd tcl && $(MAKE) -f Makefile clean)
(cd symbols && $(MAKE) -f Makefile clean)
(cd dcg_support && $(MAKE) -f Makefile clean)
clobber:
(cd misc; $(MAKE) -f Makefile clobber)
(cd stats; $(MAKE) -f Makefile clobber)
(cd tcl; $(MAKE) -f Makefile clobber)
(cd symbols; $(MAKE) -f Makefile clobber)
(cd dcg_support; $(MAKE) -f Makefile clobber)