mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
--- Makefile.in.orig Sun Sep 17 11:49:10 1995
|
|
+++ Makefile.in Sat Nov 29 01:33:15 1997
|
|
@@ -70,7 +70,7 @@
|
|
COMPLETE_MAKE=@COMPLETE_MAKE@
|
|
|
|
# optimization flag -- may become host dependent
|
|
-OPT_FLAG = -O
|
|
+#OPT_FLAG = -O
|
|
CDEBUG = @CDEBUG@
|
|
USER_OBJECTS = @USER_OBJECTS@
|
|
|
|
@@ -90,7 +90,7 @@
|
|
# Where to put the system-wide image file
|
|
libdir = $(prefix)/lib
|
|
smlibdir = $(libdir)/smalltalk
|
|
-stdir = $(prefix)/smalltalk
|
|
+stdir = $(libdir)/smalltalk
|
|
|
|
## Where to put the manual pages.
|
|
#mandir = $(prefix)/man
|
|
@@ -160,12 +160,12 @@
|
|
Makefile.defs.in Makefile.rules \
|
|
blox/Makefile.body \
|
|
stix/Makefile.body tcp/Makefile.body test/Makefile.body \
|
|
- cxtnsn/Makefile.body examples/Makefile.body contrib/Makefile.body \
|
|
+ examples/Makefile.body contrib/Makefile.body \
|
|
info/Makefile.body
|
|
|
|
|
|
# Subdirectories to run make in for the primary targets.
|
|
-SUBDIRS = lib stix blox info examples contrib cxtnsn test tcp
|
|
+SUBDIRS = lib stix blox info examples contrib test tcp
|
|
|
|
# Only make TAGS/tags files in these directories, in this order
|
|
###TSUBDIRS= src lib
|
|
@@ -197,7 +197,7 @@
|
|
$(RM) gst
|
|
$(CC) $(LDFLAGS) $(LDPATH) $(BINDING) -o $@ $(CFLAGS) $(CDEBUG) \
|
|
$(OBJECTS) lib/libgst.a $(LIBS)
|
|
- $(COMPLETE_MAKE)
|
|
+# $(COMPLETE_MAKE)
|
|
|
|
# A hack to force this directory to be reevaluated.
|
|
libgst.a:
|
|
@@ -219,8 +219,10 @@
|
|
# $(RM) junk.c xmakefile
|
|
|
|
installdirs:
|
|
- $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \
|
|
- $(stdir)
|
|
+ if [ ! -d $(smlibdir) ]; then \
|
|
+ $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(smlibdir) $(infodir) \
|
|
+ $(stdir); \
|
|
+ fi
|
|
|
|
install:: installdirs all
|
|
$(INSTALL_PROGRAM) gst $(bindir)/$(binprefix)gst
|