1996-02-08 04:54:18 +00:00
|
|
|
--- ./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
|
1998-08-31 16:09:19 +00:00
|
|
|
+CFLAGS += -O
|
1996-02-08 04:54:18 +00:00
|
|
|
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}
|
1998-08-31 16:09:19 +00:00
|
|
|
+ install -cs -m 755 -o bin -g bin ${DEST} ${RDEST}
|
1996-02-08 04:54:18 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
/bin/rm -f ${DEST} core *.o
|