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 2011-09-08 03:38:27.000000000 +0900
+++ mosis/Makefile 2012-02-22 16:51:46.000000000 +0900
@@ -23,6 +23,8 @@
#
#
+BINDIR = ${PREFIX}/bin
+
##
## (1) Choosing your compiler
## ---------------------------
@@ -47,7 +49,7 @@
##
CHIPMUNKCC = gcc -O3
-CC = $(CHIPMUNKCC)
+CC ?= $(CHIPMUNKCC)
##
## If X isn't in the include path, change XINCLUDEDIR:
@@ -67,7 +69,7 @@
## For most versions of UNIX, one of the above directories
## will be the correct one to use on the line below:
-XINCLUDEDIR = .
+XINCLUDEDIR = ${LOCALBASE}/include
##
## If X isn't in the library path, change LIBX11 to reflect this:
@@ -92,7 +94,7 @@
## LIBX11= -lX11 -s
##
-LIBX11 = -lX11
+LIBX11 = -lX11 -L${LOCALBASE}/lib
##
## (3) Adding appropriate flags
@@ -133,7 +135,7 @@
CHIPMUNKFLAGS =
-CFLAGS = $(CHIPMUNKFLAGS) -O -I../psys/include -I$(XINCLUDEDIR)
+CFLAGS += -DBSD -DF_OK -I../psys/include -I$(XINCLUDEDIR)
##
## (4) Library additions
@@ -141,7 +143,7 @@
##
## on some systems, -ldl must be added to the following line
-OTHERLIBS= -lm
+OTHERLIBS= -lm -lcompat
##
##
@@ -154,7 +156,7 @@
$(CC) $(CFLAGS) -o mosis mosis.o $(LDFLAGS)
install: mosis
- cp mosis ../bin/mosis
+ ${BSD_INSTALL_PROGRAM} mosis $(BINDIR)
clean:
rm -f *.o mosis
|