diff options
author | wl <wl> | 2008-04-30 05:27:54 +0000 |
---|---|---|
committer | wl <wl> | 2008-04-30 05:27:54 +0000 |
commit | a4a82544d13635b45d6c3a848ad26eca82ae48cf (patch) | |
tree | a35c32035de2790b3a45db4086a7755ccb65bcd8 /Makefile.comm | |
parent | 7f33d289d1ea3ebe2f674d351ce9fcb33934560c (diff) | |
download | groff-a4a82544d13635b45d6c3a848ad26eca82ae48cf.tar.gz |
* Makefile.comm (depend.temp): Add `EXTRA_CCFLAGS'.
Diffstat (limited to 'Makefile.comm')
-rw-r--r-- | Makefile.comm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.comm b/Makefile.comm index b5dd82ef..91ab0a19 100644 --- a/Makefile.comm +++ b/Makefile.comm @@ -302,9 +302,9 @@ depend.temp: FORCE ytabc="$(YTABC)"; \ fi; \ test -z "$(CCSRCS)$(YTABC)" \ - || $(CCC) $(ALL_CCFLAGS) -MM $(CCSRCS) $$ytabc >>depend.temp + || $(CCC) $(ALL_CCFLAGS) $(EXTRA_CCFLAGS) -MM $(CCSRCS) $$ytabc >>depend.temp test -z "$(CSRCS)" \ - || $(CC) $(ALL_CFLAGS) -MM $(CSRCS) >>depend.temp + || $(CC) $(ALL_CFLAGS) $(EXTRA_CFLAGS) -MM $(CSRCS) >>depend.temp test -z "$(YTABH)" \ || (sed -e 's|$(YTABH)|$(YTABC)|g' depend.temp >depend1.temp; \ mv depend1.temp depend.temp) |