-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
123 lines (99 loc) · 2.23 KB
/
Makefile
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#
# Makefile to update the most things concerning the window handler.
#
PRINT = print
TOUCH = touch
compile:
cd hnd/whgo ; make
cd hnd/csrc ; make
cd wsh/wsh ; make
cd wsh/wshpp ; make
cd wsh/wshdis ; make
cd demo ; make
cd test ; make
cd wlib ; make
cd wcmds ; make
cd examples ; make
ccheck:
cd hnd/whgo ; make -n
cd hnd/csrc ; make -n
cd wsh/wsh ; make -n
cd wsh/wshpp ; make -n
cd wsh/wshdis ; make -n
cd demo ; make -n
cd test ; make -n
cd wlib ; make -n
cd wcmds ; make -n
cd examples ; make -n
head:
@echo "You must be super user do do this!"
cd wincl/win ; make all
hcheck:
cd wincl/win ; make -n
lib:
@-echo "You must be super user to do this!"
cd wlib ; make install
lcheck:
cd wlib ; make -n install
#
# Print all recently changed files.
#
printall:
make print
cd hnd/csrc ; make print
cd demo ; make print
cd install ; make print
cd doc ; make print
cd test ; make print
cd hnd/whgo ; make print
cd wincl/win ; make print
cd wlib ; make print
cd wsh/wsh ; make print
cd wsh/wshpp ; make print
cd wsh/wshdis ; make print
cd wsh/wd ; make print
cd wsh/st ; make print
cd wcmds ; make print
cd examples ; make print
pcheck:
make -n print
cd hnd/csrc ; make -n print
cd demo ; make -n print
cd install ; make -n print
cd doc ; make -n print
cd test ; make -n print
cd hnd/whgo ; make -n print
cd wincl/win ; make -n print
cd wlib ; make -n print
cd wsh/wsh ; make -n print
cd wsh/wshpp ; make -n print
cd wsh/wshdis ; make -n print
cd wsh/wd ; make -n print
cd wsh/st ; make -n print
cd wcmds ; make -n print
cd examples ; make -n print
cleanup:
cd hnd/whgo ; make cleanup
cd hnd/csrc ; make cleanup
cd wsh/wsh ; make cleanup
cd wsh/wshpp ; make cleanup
cd wsh/wshdis ; make cleanup
cd demo ; make cleanup
cd test ; make cleanup
cd wlib ; make cleanup
cd wcmds ; make cleanup
cd examples ; make cleanup
cleanchk:
cd hnd/whgo ; make -n cleanup
cd hnd/csrc ; make -n cleanup
cd wsh/wsh ; make -n cleanup
cd wsh/wshpp ; make -n cleanup
cd wsh/wshdis ; make -n cleanup
cd demo ; make -n cleanup
cd test ; make -n cleanup
cd wlib ; make -n cleanup
cd wcmds ; make -n cleanup
cd examples ; make -n cleanup
print: Makefile READ_ME Wishlist Mods_since_1.0
$(PRINT) $?
$(TOUCH) $@