1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/editors/thoteditor/files/patch-ae
Chuck Robey c7218db3fd fixed the MOTIFLIB support, and added the manpages for cextract.
If you install thoteditor, and you write C codee, make a point of
reading the cextract man page.

Pointed out by: Satoshi
1999-10-04 03:58:46 +00:00

20 lines
625 B
Plaintext

--- ../Makefile.in.orig Wed Oct 8 04:13:58 1997
+++ ../Makefile.in Sun Oct 3 23:44:16 1999
@@ -17,6 +17,7 @@
SUBDIRS = tools tablelib thotlib batch drawlib indexlib thot amaya
EXTRA_SUBDIRS= misc classes javalib
+BINS = bin/app bin/grm bin/printstr bin/str bin/tra bin/cextract bin/print bin/prs bin/thot
prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -76,6 +77,8 @@
do if test -d $$dir ; then cd $$dir ; \
$(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" install ; \
cd .. ; fi ;done )
+ @(set -x;for file in $(BINS);\
+ do $(INSTALL_BIN) $$file ${bindir}; done )
uninstall :
@(for dir in $(SUBDIRS) ;\