diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/config/ChangeLog | 2 | ||||
| -rw-r--r-- | src/config/libobj.in | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/config/ChangeLog b/src/config/ChangeLog index efe40f40c..27b611715 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,5 +1,7 @@ 2002-09-03 Ken Raeburn <raeburn@mit.edu> + * libobj.in (.c.so, .c.po): Put LOCALINCLUDES before CPPFLAGS. + * pre.in (ALL_CFLAGS): Put LOCALINCLUDES before CPPFLAGS. 2002-08-29 Ken Raeburn <raeburn@mit.edu> diff --git a/src/config/libobj.in b/src/config/libobj.in index e2ec4cfae..2cc63bd18 100644 --- a/src/config/libobj.in +++ b/src/config/libobj.in @@ -29,10 +29,10 @@ PICFLAGS=@PICFLAGS@ PROFFLAGS=@PROFFLAGS@ .SUFFIXES: .c .so .po .c.so: - $(CC) $(DEFS) $(DEFINES) $(PICFLAGS) $(CPPFLAGS) $(LOCALINCLUDES) $(CFLAGS) -c $< -o $*.so.o && \ + $(CC) $(DEFS) $(DEFINES) $(PICFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.so.o && \ $(MV) $*.so.o $*.so .c.po: - $(CC) $(DEFS) $(DEFINES) $(PROFFLAGS) $(CPPFLAGS) $(LOCALINCLUDES) $(CFLAGS) -c $< -o $*.po.o && \ + $(CC) $(DEFS) $(DEFINES) $(PROFFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.po.o && \ $(MV) $*.po.o $*.po # rules to generate object file lists |
