mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
34 lines
898 B
Plaintext
34 lines
898 B
Plaintext
|
--- Makefile.orig Tue Jul 26 18:29:53 1994
|
||
|
+++ Makefile Wed Jul 29 18:49:18 1998
|
||
|
@@ -1,14 +1,15 @@
|
||
|
#### ack 1993,94 H.Ogasawara (COR.)
|
||
|
####
|
||
|
#### -- install directory
|
||
|
-BINARY = /usr/local/bin
|
||
|
-MANUAL = /usr/local/man/man1
|
||
|
+PREFIX?= /usr/local
|
||
|
+BINARY = ${PREFIX}/bin
|
||
|
+MANUAL = ${PREFIX}/man/ja/man1
|
||
|
|
||
|
####
|
||
|
#### -- UNIX
|
||
|
CC = cc
|
||
|
-CFLAGS = -O -DDEFCODE=2 -DDEFJIS=2 -DENVACK=1
|
||
|
-#CFLAGS = -O -DDEFCODE=1 -DDEFJIS=2 -DENVACK=1 -DLANGCHK=1 -DJCONVSW=1
|
||
|
+#CFLAGS = -O -DDEFCODE=2 -DDEFJIS=2 -DENVACK=1
|
||
|
+CFLAGS = -O -DDEFCODE=1 -DDEFJIS=2 -DENVACK=1 -DLANGCHK=1 -DJCONVSW=1
|
||
|
####
|
||
|
#### -- Human68k
|
||
|
#CC = gcc
|
||
|
@@ -34,8 +35,8 @@
|
||
|
$(CC) $(LDFLAGS) $(OBJ) -o $@
|
||
|
|
||
|
install: $(PROG)
|
||
|
- install -s -c $(PROG) $(BINARY)
|
||
|
- install -c ack.1 $(MANUAL)
|
||
|
+ ${BSD_INSTALL_PROGRAM} $(PROG) $(BINARY)
|
||
|
+ ${BSD_INSTALL_MAN} ack.1 $(MANUAL)
|
||
|
|
||
|
codetosjis.o: codetosjis.c kanjicode.h
|
||
|
codetoeuc.o: codetoeuc.c kanjicode.h
|