diff options
| author | gwr <gwr@NetBSD.org> | 1999-04-03 04:39:10 +0000 |
|---|---|---|
| committer | gwr <gwr@NetBSD.org> | 1999-04-03 04:39:10 +0000 |
| commit | ae400a2e31cc9b7bbe20a1e54f40cd490f9e692c (patch) | |
| tree | c02cdd43e927f08baa9becdfe5fe8dbe1318cf42 /usr.bin/make/Makefile.boot | |
| parent | 0a1b2f4b53798b184d0945c6aa8da88467b161d5 (diff) | |
Define CC=gcc -O and add -DMACHINE=...
Diffstat (limited to 'usr.bin/make/Makefile.boot')
| -rw-r--r-- | usr.bin/make/Makefile.boot | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile.boot b/usr.bin/make/Makefile.boot index abd4aeca22c..a8f4f597cdb 100644 --- a/usr.bin/make/Makefile.boot +++ b/usr.bin/make/Makefile.boot @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.boot,v 1.9 1998/05/21 17:19:46 tv Exp $ +# $NetBSD: Makefile.boot,v 1.10 1999/04/03 04:39:10 gwr Exp $ # # a very simple makefile... # @@ -6,13 +6,17 @@ # # modify MACHINE and MACHINE_ARCH as appropriate for your target architecture # +CC=gcc -O .c.o: ${CC} ${CFLAGS} -c $< -o $@ MACHINE=sun MACHINE_ARCH=sparc -CFLAGS= -I. -DTARGET_MACHINE=\"${MACHINE}\" -DTARGET_MACHINE_ARCH=\"${MACHINE_ARCH}\" \ +CFLAGS= -I.\ + -DTARGET_MACHINE=\"${MACHINE}\" \ + -DTARGET_MACHINE_ARCH=\"${MACHINE_ARCH}\" \ + -DMACHINE=\"sparc\" \ -DMAKE_BOOTSTRAP LIBS= |
