-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
44 lines (38 loc) · 898 Bytes
/
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
install:
cd apps/apps_test; make install
cd runtime; make install
cd facilities; make links
cd libsrc; make install
cd apps; make install
install-clean:
cd apps/apps_test; make install
cd facilities; make links
cd libsrc; make install-clean
cd apps; make install-clean
install.mb:
cd apps/apps_test; make install.mb
cd facilities; make links.mb
cd libsrc; make install.mb
cd external; make install
cd apps; make install.mb
cd cgi_apps; make install
cd www; make install
cd runtime; make install
rebuild:
make clean
make install
tools:
cd apps/apps_test; make install
cd runtime; make install
cd facilities; make links
cd libsrc; make install
cd apps; make tools
clean:
cd libsrc; make clean
cd apps; make clean
cd cgi_apps; make clean
clean.mb:
cd libsrc; make clean
cd external; make clean
cd apps; make clean
cd cgi_apps; make clean