diff options
author | obrien <obrien@FreeBSD.org> | 1999-04-18 09:44:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-04-18 09:44:36 +0000 |
commit | b710768bd34c0afcc9eb7116cd47eb89d244f667 (patch) | |
tree | af99f7f248291372138291d6dce78edc3d10ab72 | |
parent | 025141faad3612f1bb503ad63e43bdaa3933addb (diff) | |
download | FreeBSD-src-b710768bd34c0afcc9eb7116cd47eb89d244f667.zip FreeBSD-src-b710768bd34c0afcc9eb7116cd47eb89d244f667.tar.gz |
Add FORTRAN support.
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index e17b785..c7fbf68 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.26 1999/04/11 04:11:27 bde Exp $ +# $Id: Makefile,v 1.27 1999/04/11 04:32:42 bde Exp $ # # @@ -144,11 +144,11 @@ multilib.h: options.h: echo '#include "cp/lang-options.h"' > ${.TARGET} - #echo '#include "f/lang-options.h"' >> ${.TARGET} + echo '#include "f/lang-options.h"' >> ${.TARGET} specs.h: echo '#include "cp/lang-specs.h"' > ${.TARGET} - #echo '#include "f/lang-specs.h"' >> ${.TARGET} + echo '#include "f/lang-specs.h"' >> ${.TARGET} tconfig.h: echo '#include "${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h"' > ${.TARGET} |