blob: a25b2a467c287428378425622bded1a840d08fb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- Makefile.in.orig 2003-09-20 14:23:28 UTC
+++ Makefile.in
@@ -1,9 +1,9 @@ all: ./src/Makefile
all: ./src/Makefile
- cd ./src; make; cd ../
+ cd ./src; ${MAKE}
install: ./src/Makefile ./doc/Makefile
- cd ./src; make install; cd ../
- cd ./doc; make install; cd ../
+ cd ./src; ${MAKE} install
+ cd ./doc; ${MAKE} install
uninstall: ./src/Makefile ./doc/Makefile
cd ./src;make uninstall; cd ../
|