comparison Makeconf.in @ 994:6ada1ed8eba6

[project @ 1994-12-16 01:24:27 by jwe]
author jwe
date Fri, 16 Dec 1994 01:24:27 +0000
parents 9f01b6c2a607
children 24154cb763dc
comparison
equal deleted inserted replaced
993:34c1b152d6a3 994:6ada1ed8eba6
188 target_host_type = @target_host_type@ 188 target_host_type = @target_host_type@
189 189
190 # The following pattern rules and the substitution functions require 190 # The following pattern rules and the substitution functions require
191 # GNU make. If you don't have it, get it! 191 # GNU make. If you don't have it, get it!
192 192
193 @DEFAULT_DOT_C_FROM_DOT_F@ 193 # Rules for making C source from Fortran source (if necessary).
194 194 #
195 @DEFAULT_DOT_O_FROM_DOT_F@ 195 # If we are using f2c there will be a command for the `%.c : %.f'
196 # pattern and no command for the `%.o : %.f' pattern, so that make
197 # will not invoke the fortran compiler by mistake.
198 #
199 # If we are not using f2c, it should be ok to have an empty rule for
200 # the pattern `%.c : %.f', but we don't want to replace make's default
201 # rule for making object from Fortran source files, so there should be
202 # no pattern or command for that.
203
204 %.c : %.f
205 @DEFAULT_DOT_C_FROM_DOT_F_CMD@
206
207 @DEFAULT_DOT_O_FROM_DOT_F_PAT@
196 208
197 # How to make .o files from .c files: 209 # How to make .o files from .c files:
198 210
199 .c.o: 211 .c.o:
200 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< 212 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<