blob: 7c9afc7d59f2221e8a9853215b493b51f8547a7d (
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
|
--- ./conv/Makefile.org Wed Feb 7 18:45:35 1996
+++ ./conv/Makefile Wed Feb 7 18:45:36 1996
@@ -5,10 +5,10 @@
# This one is pretty straightforward - no special flags for it.
CC = cc
-CFLAGS = -O
+CFLAGS += -O
SRCS = convd.c
DEST = convd
-RDEST = /usr/local/etc/convd
+RDEST = ${PREFIX}/libexec/convd
#RDEST = /usr/local/lib/convd
all: ${DEST}
@@ -19,7 +19,7 @@
install: ${DEST}
/bin/rm -f ${RDEST}
- cp ${DEST} ${RDEST}
+ install -cs -m 755 -o bin -g bin ${DEST} ${RDEST}
clean:
/bin/rm -f ${DEST} core *.o
|