diff Makeconf.in @ 1679:7dbdf23e1d18

[project @ 1995-12-30 03:32:34 by jwe]
author jwe
date Sat, 30 Dec 1995 03:32:34 +0000
parents 6e8ac624ed9b
children 5738406d6759
line wrap: on
line diff
--- a/Makeconf.in	Fri Dec 29 00:42:16 1995 +0000
+++ b/Makeconf.in	Sat Dec 30 03:32:34 1995 +0000
@@ -27,13 +27,15 @@
 
 DEFAULT_PAGER = @DEFAULT_PAGER@
 
-WITH_DL = @use_dl@
-WITH_DLD = @use_dld@
-WITH_SHL = @use_shl@
+WITH_DL = @WITH_DL@
+WITH_SHL = @WITH_SHL@
+
+WITH_DYNAMIC_LINKING = @WITH_DYNAMIC_LINKING@
 
-OCTAVE_LITE = @lite_kernel@
+OCTAVE_LITE = @OCTAVE_LITE@
 
-SHARED_LIBS = @shared_libs@
+SHARED_LIBS = @SHARED_LIBS@
+SHLEXT = @SHLEXT@
 
 # Fortran to C translator and associated flags.
 
@@ -94,6 +96,8 @@
 LD_STATIC_FLAG = @LD_STATIC_FLAG@
 ALL_LDFLAGS = $(LIBFLAGS) $(GCC_IEEE_FP_FLAG) $(LD_STATIC_FLAG) $(LDFLAGS)
 
+RLD_FLAG = @RLD_FLAG@
+
 FLIBS = @FLIBS@
 FLIB_LIST = @FLIB_LIST@
 FLIB_PATH = @FLIB_PATH@
@@ -200,7 +204,7 @@
 # The following pattern rules and the substitution functions require
 # GNU make.  If you don't have it, get it!
 
-# Rules for making C source from Fortran source (if necessary).
+# Rules for making object files from Fortran source.
 #
 # If we are using f2c there will be a command for the `%.c : %.f'
 # pattern and no command for the `%.o : %.f' pattern, so that make
@@ -211,16 +215,18 @@
 # rule for making object from Fortran source files, so there should be
 # no pattern or command for that.
 
-@fortran_rules_frag@
+@f77_rules_frag@
 
 # How to make .o files:
 
 .c.o:
-	test -z "$(CPICFLAG)" -a -f pic || $(CC) -c $(CPPFLAGS) $(CPICFLAG) $(ALL_CFLAGS) $< -o pic/$@ \
+	[ -z "$(CPICFLAG)" ] ||\
+	  $(CC) -c $(CPPFLAGS) $(CPICFLAG) $(ALL_CFLAGS) $< -o pic/$@
 	$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
 
 .cc.o:
-	test -z "$(CXXPICFLAG)" -a -f pic || $(CXX) -c $(CPPFLAGS) $(CXXPICFLAG) $(ALL_CXXFLAGS) $< -o pic/$@ \
+	[ -z "$(CXXPICFLAG)" ] ||\
+	  $(CXX) -c $(CPPFLAGS) $(CXXPICFLAG) $(ALL_CXXFLAGS) $< -o pic/$@
 	$(CXX) -c $(CPPFLAGS) $(ALL_CXXFLAGS) $<
 
 # Here is a rule for generating dependencies for .cc files: