diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-03 23:22:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-03 23:22:35 +0000 |
commit | e6a8224e73f1e0db61dc7a2c44f9e54df16d1dcc (patch) | |
tree | a784c8fb4013980d9b0e3a108e42a012cb2f2fe9 /gnu/usr.bin | |
parent | 66a42e130706c81d2d1441a8c10d7a2913e8e268 (diff) |
Don't generate libmath.h in the obj dir each time we build since it
is already in the src dir. miod@ OK
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/bc/bc/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/bc/bc/Makefile.in b/gnu/usr.bin/bc/bc/Makefile.in index 24db7d355c3..461dff8fce1 100644 --- a/gnu/usr.bin/bc/bc/Makefile.in +++ b/gnu/usr.bin/bc/bc/Makefile.in @@ -288,12 +288,12 @@ $(PROGRAMS): ../lib/libbc.a scan.o: $(srcdir)/bc.h global.o: libmath.h -libmath.h: libmath.b - echo \"\" > libmath.h - $(MAKE) fbc - ./fbc -c $(srcdir)/libmath.b </dev/null >libmath.h - sh $(srcdir)/fix-libmath_h - rm -f ./fbc +#libmath.h: libmath.b +# echo \"\" > libmath.h +# $(MAKE) fbc +# ./fbc -c $(srcdir)/libmath.b </dev/null >libmath.h +# sh $(srcdir)/fix-libmath_h +# rm -f ./fbc install-data-local: if grep -s "define BC_MATH_FILE" ../config.h; \ |