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
|
--- mosis/Makefile.orig Tue Nov 4 22:19:13 2003
+++ mosis/Makefile Tue Dec 9 17:44:45 2003
@@ -23,6 +23,8 @@
#
#
+BINDIR = ${PREFIX}/bin
+
##
## (1) Choosing your compiler
## ---------------------------
@@ -47,7 +49,7 @@
##
-CC = gcc
+CC ?= gcc
##
## (2) If X isn't in the include path (the case for many MachTen and Linux
@@ -62,7 +64,7 @@
## or some other directory, depending on your installation. Use the
## first one for OS X.
-XINCLUDEDIR = .
+XINCLUDEDIR = ${LOCALBASE}/include
##
## If X isn't in the library path (the case for many MachTen and Linux
@@ -77,7 +79,7 @@
## depending on your installation. Use the second one for OS X.
##
-LIBX11 = -lX11
+LIBX11 = -lX11 -L${LOCALBASE}/lib
##
## (3) Adding appropriate flags
@@ -115,7 +117,7 @@
CHIPMUNKFLAGS =
-CFLAGS = $(CHIPMUNKFLAGS) -O -I../psys/include -I$(XINCLUDEDIR)
+CFLAGS += -DBSD -DF_OK -I../psys/include -I$(XINCLUDEDIR)
##
## (4) Library additions
@@ -123,7 +125,7 @@
##
## on some systems, -ldl must be added to the following line
-OTHERLIBS= -lm
+OTHERLIBS= -lm -lcompat
##
##
@@ -136,7 +138,7 @@
$(CC) -o mosis mosis.o $(LDFLAGS)
install: mosis
- cp mosis ../bin/mosis
+ ${BSD_INSTALL_PROGRAM} mosis $(BINDIR)
clean:
rm -f *.o mosis
|