blob: ba74df33e50357ab790a73527cba583e94f5e038 (
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
38
39
40
41
42
43
44
|
--- dynlibs/Makefile.orig Sun Feb 6 15:08:02 2000
+++ dynlibs/Makefile Fri Apr 12 02:16:37 2002
@@ -1,24 +1,24 @@
all:
- cd interface; make
- cd intinf; make
- cd mgd; make
- cd mgdbm; make
- cd mmysql; make
- cd mpq; make
- cd mregex; make
- cd msocket; make
- cd munix; make
+ #cd interface; make INCDIR=../../runtime
+ cd intinf; make INCDIR=../../runtime
+ #cd mgd; make INCDIR=../../runtime
+ #cd mgdbm; make INCDIR=../../runtime
+ #cd mmysql; make INCDIR=../../runtime
+ #cd mpq; make INCDIR=../../runtime
+ #cd mregex; make INCDIR=../../runtime
+ cd msocket; make INCDIR=../../runtime
+ cd munix; make INCDIR=../../runtime
install:
- cd intinf; make install
- cd mgd; make install
- cd mgdbm; make install
- cd mmysql; make install
- cd mpq; make install
- cd mregex; make install
- cd msocket; make install
- cd munix; make install
+ cd intinf; make INCDIR=../../runtime install
+ #cd mgd; make INCDIR=../../runtime install
+ #cd mgdbm; make INCDIR=../../runtime install
+ #cd mmysql; make INCDIR=../../runtime install
+ #cd mpq; make INCDIR=../../runtime install
+ #cd mregex; make INCDIR=../../runtime install
+ cd msocket; make INCDIR=../../runtime install
+ cd munix; make INCDIR=../../runtime install
test:
cd interface; make test
|