diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-10-16 16:53:15 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-10-16 16:53:15 +0000 |
| commit | 19e595a57a937c0f0fa99fb28cbdc597192d7df0 (patch) | |
| tree | 17b7f8329fa70e8429965053b2a2b1d8ee999b4b /gnu | |
| parent | e1657417921fb5573e764f6e108cb9f6c69f5c58 (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 42a13c8c6a3e..72e563c16d80 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.12 1998/07/07 01:46:41 bde Exp $ +# $Id: Makefile,v 1.13 1998/08/20 21:45:46 jb Exp $ # # @@ -124,19 +124,19 @@ CLEANFILES+= objc-parse.y # insurance #----------------------------------------------------------------------- # the host/target compiler config. -COMMONHDRS= config.h hconfig.h tconfig.h tm.h options.h specs.h - -${COMMONHDRS}: - echo '#include "${MACHINE_ARCH}/freebsd.h"' > tm.h - echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > config.h - echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > hconfig.h - echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > tconfig.h - echo '#include "cp/lang-options.h"' > options.h - echo '#include "cp/lang-specs.h"' > specs.h - echo '#include "f2c-specs.h"' >> specs.h - +COMMONHDRS= config.h hconfig.h options.h specs.h tconfig.h tm.h GENSRCS+= ${COMMONHDRS} +config.h hconfig.h tconfig.h: + echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > ${.TARGET} +options.h: + echo '#include "cp/lang-options.h"' > ${.TARGET} +specs.h: + echo '#include "cp/lang-specs.h"'> ${.TARGET} + echo '#include "f2c-specs.h"' >> ${.TARGET} +tm.h: + echo '#include "${MACHINE_ARCH}/freebsd.h"' > ${.TARGET} + #----------------------------------------------------------------------- # General things. |
