diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-05 19:31:15 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-05 19:31:15 +0000 |
commit | cc8ab1294d8bd09f234ecdbb93e52c6e63ea0075 (patch) | |
tree | 07676018276d3073095203f1f5bfcae1fd86fcdd | |
parent | 1089e30d67821a8db68598c34ee2fe291669a31d (diff) | |
download | guile-cc8ab1294d8bd09f234ecdbb93e52c6e63ea0075.tar.gz |
* Makefile.in (.c.x): Simplify; there's no need to run this rule
when scmconfig.h doesn't exist.
-rw-r--r-- | libguile/Makefile.in | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/libguile/Makefile.in b/libguile/Makefile.in index 8bb84c0ef..ad6c8105b 100644 --- a/libguile/Makefile.in +++ b/libguile/Makefile.in @@ -390,17 +390,7 @@ manifest = $(ancillary) $(c_sources) .SUFFIXES: .o .c .h .ps .dvi .info .texinfo .scm .x .c.x: - if test ! -escmconfig.h ; then \ - touch scmconfig.h; \ - fake_scmconfig=1; \ - else \ - fake_scmconfig=0; \ - fi; \ - $(CC) -DSCM_MAGIC_SNARFER -E $< | grep "^%%%" | sed -e "s/^%%%//" > $@ ; \ - if test $$fake_scmconfig -eq 1 ; then \ - rm scmconfig.h; \ - else : ; \ - fi + $(CC) -DSCM_MAGIC_SNARFER -E $< | grep "^%%%" | sed -e "s/^%%%//" > $@ .PHONY: all all: libguile.a |