mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
c7218db3fd
If you install thoteditor, and you write C codee, make a point of reading the cextract man page. Pointed out by: Satoshi
70 lines
3.6 KiB
Plaintext
70 lines
3.6 KiB
Plaintext
--- ../thot/Makefile.in.orig Wed Nov 19 05:41:49 1997
|
|
+++ ../thot/Makefile.in Sun Oct 3 23:42:28 1999
|
|
@@ -14,7 +14,7 @@
|
|
-I@top_srcdir@/drawlib -I@top_srcdir@/drawlib/f
|
|
LDFLAGS = @LDFLAGS@ -L../indexlib -L../drawlib -L../tablelib -L../thotlib -L..
|
|
LIBS = -lThotIndex -lThotDraw -lThotTable -lThotEditor @IMGLIBS@ \
|
|
- $(MOTIF_LIBRARIES) -lXm $(X_LIBS) -lXt -lXext $(X_PRE_LIBS) \
|
|
+ %%MOTIFLIB%% -lXm $(X_LIBS) -lXt -lXext $(X_PRE_LIBS) \
|
|
-lX11 $(X_EXTRA_LIBS) @LIBS@ @EXTRA_LIBS@ -lm
|
|
|
|
prefix = @prefix@
|
|
@@ -27,6 +27,7 @@
|
|
CONFIGFILES= \
|
|
XKeysymDB thot.ini thot.color thot.pattern thot.keyboard \
|
|
fr-thotdialogue en-appdialogue en-compildialogue en-corrdialogue \
|
|
+ en-cssmessage \
|
|
en-drawdialogue en-grmdialogue en-inddialogue en-itfdialogue \
|
|
en-libdialogue en-printdialogue en-prsdialogue en-strdialogue \
|
|
en-thotdialogue en-thotmessage en-thotversion en-transdialogue \
|
|
@@ -54,30 +55,32 @@
|
|
$(RM) *.o EDITORAPP.c EDITOR.A
|
|
|
|
install : all
|
|
- @(if test ! -d $(datadir) ; then $(MKDIR) $(datadir) ; fi)
|
|
- @(if test ! -d $(datadir)/thot ; then $(MKDIR) $(datadir)/thot ; fi)
|
|
- @(if test ! -d $(datadir)/thot/config ; then $(MKDIR) $(datadir)/thot/config ; fi)
|
|
- @(if test ! -d $(datadir)/thot/fonts ; then $(MKDIR) $(datadir)/thot/fonts ; fi)
|
|
- @(if test ! -d $(datadir)/thot/dicopar ; then $(MKDIR) $(datadir)/thot/dicopar ; fi)
|
|
- @(if test ! -d $(datadir)/thot/applis ; then $(MKDIR) $(datadir)/thot/applis ; fi)
|
|
- @(if test ! -d $(datadir)/thot/applis/bin ; then $(MKDIR) $(datadir)/thot/applis/bin ; fi)
|
|
- @(if test ! -d $(datadir)/schemas ; then $(MKDIR) $(datadir)/schemas ; fi)
|
|
- $(INSTALL_BIN) ../bin/thot $(datadir)/thot/applis/bin
|
|
- $(INSTALL_BIN) ../bin/print $(datadir)/thot/applis/bin
|
|
- (for i in $(SCHEMAS) ; do \
|
|
+ @(set -x;if test ! -d $(datadir) ; then $(MKDIR) $(datadir) ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot ; then $(MKDIR) $(datadir)/thot ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/config ; then $(MKDIR) $(datadir)/thot/config ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/fonts ; then $(MKDIR) $(datadir)/thot/fonts ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/dicopar ; then $(MKDIR) $(datadir)/thot/dicopar ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/applis ; then $(MKDIR) $(datadir)/thot/applis ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/applis/bin ; then $(MKDIR) $(datadir)/thot/applis/bin ; fi)
|
|
+ @(set -x;if test ! -d $(datadir)/thot/schemas ; then $(MKDIR) $(datadir)/thot/schemas ; fi)
|
|
+ @$(INSTALL_BIN) ../bin/thot $(datadir)/thot/applis/bin
|
|
+ @$(INSTALL_BIN) ../bin/print $(datadir)/thot/applis/bin
|
|
+ @$(INSTALL_DATA) EDITOR.h $(THOTDIR)/schemas
|
|
+ @$(INSTALL_DATA) ExtCss.h $(THOTDIR)/schemas
|
|
+ @(set -x;for i in $(SCHEMAS) ; do \
|
|
for file in `$(ECHO) $(THOTDIR)/schemas/$$i` ; do \
|
|
$(INSTALL_DATA) $$file $(datadir)/thot/schemas ; \
|
|
done ; done)
|
|
- (for i in $(CONFIGFILES) ; do \
|
|
- for file in `$(ECHO) $(THOTDIR)/thot/config/$$i` ; do \
|
|
+ @(set -x;for i in $(CONFIGFILES) ; do \
|
|
+ for file in `$(ECHO) $(THOTDIR)/config/$$i` ; do \
|
|
$(INSTALL_DATA) $$file $(datadir)/thot/config ; \
|
|
done ; done)
|
|
- (for i in $(DICOFILES) ; do \
|
|
- for file in `$(ECHO) $(THOTDIR)/thot/dicopar/$$i` ; do \
|
|
+ @(set -x;for i in $(DICOFILES) ; do \
|
|
+ for file in `$(ECHO) $(THOTDIR)/dicopar/$$i` ; do \
|
|
$(INSTALL_DATA) $$file $(datadir)/thot/dicopar ; \
|
|
done ; done)
|
|
- (for i in $(FONTSFILES) ; do \
|
|
- for file in `$(ECHO) $(THOTDIR)/thot/fonts/$$i` ; do \
|
|
+ @(set -x;for i in $(FONTSFILES) ; do \
|
|
+ for file in `$(ECHO) $(THOTDIR)/fonts/$$i` ; do \
|
|
$(INSTALL_DATA) $$file $(datadir)/thot/fonts ; \
|
|
done ; done)
|
|
|