mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
520b21cc72
A CD-ROM dictionary lookup facility (server and clients). Submitted by: Yoshio MITA <mita@jp.freebsd.org> (Closing PR #2311.)
19 lines
725 B
Plaintext
19 lines
725 B
Plaintext
--- Makefile.orig Wed Nov 6 13:01:50 1996
|
|
+++ Makefile Wed Nov 6 13:02:12 1996
|
|
@@ -0,0 +1,15 @@
|
|
+PREFIX?=/usr/local
|
|
+DOCDIR=${PREFIX}/lib/dserver/doc
|
|
+all:
|
|
+ (cd server2.2-pl2; ${MAKE} all)
|
|
+ (cd clients/kenjiro; ${MAKE} all)
|
|
+ (cd clients/diclookup-mule-2.3.0; ${MAKE} all)
|
|
+install:
|
|
+ if [ ! -d ${DOCDIR} ] ; then mkdir -p ${DOCDIR} ; fi
|
|
+ (cd server2.2-pl2; ${MAKE} install)
|
|
+ (cd clients/kenjiro; ${MAKE} install)
|
|
+ (cd clients/diclookup-mule-2.3.0; ${MAKE} install)
|
|
+ cp ACKNOWLEDGMENT DICTIONARIES doc/* ${PREFIX}/lib/dserver/doc
|
|
+ cp clients/diclookup-mule-2.3.0/README ${DOCDIR}/README.diclookup-mule
|
|
+ cp clients/kenjiro/Copyright ${DOCDIR}/Copyright.kenjiro
|
|
+ cp clients/kenjiro/README ${DOCDIR}/README.kenjiro
|