blob: 9c258367476ce22c50c9abb3817c3900a31780f2 (
plain) (
blame)
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
|
--- Makefile.orig Tue Jul 15 21:11:15 2003
+++ Makefile Sat Aug 9 13:50:34 2003
@@ -1,15 +1,15 @@
# top-level Makefile for the NAB suite of programs
+all: compiler test
compiler:
-mkdir bin lib include
- (cd ucpp-1.3; make install )
(cd cifparse; make install )
(cd src; make install )
(cd nss; make install )
(cd tleap; make install )
- @echo
- @echo "completed installation of NAB version 4"
- @echo
+# @echo
+# @echo "completed installation of NAB version 4"
+# @echo
# note: "make test" needs to follow "make", since it is very hard to
# tell if the compiler is completely "made" or not.
@@ -18,14 +18,12 @@
(cd nss; make test )
clean:
- (cd ucpp-1.3; make clean )
(cd cifparse; make clean )
(cd src; make clean )
(cd nss; make clean )
(cd tleap; make clean )
uninstall:
- (cd ucpp-1.3; make uninstall )
(cd cifparse; make uninstall )
(cd src; make uninstall )
(cd nss; make uninstall )
|