diff options
| author | KATO Takenori <kato@FreeBSD.org> | 1998-09-15 03:49:43 +0000 |
|---|---|---|
| committer | KATO Takenori <kato@FreeBSD.org> | 1998-09-15 03:49:43 +0000 |
| commit | c17091756f9f5e431826d3aa0f60c751a5382544 (patch) | |
| tree | e9f7700057036ca0969a561fc45a6b3f6374a42e | |
| parent | 0dd47c30aa7cd4fbc8306bbcb92aeebe3f1234be (diff) | |
Notes
| -rw-r--r-- | sys/conf/Makefile.pc98 | 9 | ||||
| -rw-r--r-- | sys/pc98/conf/Makefile.pc98 | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index a6a6cf6c876a..de8f3591d8a4 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.36 1998/09/01 07:18:09 kato Exp $ +# $Id: Makefile.pc98,v 1.37 1998/09/05 02:35:21 kato Exp $ # # Makefile for FreeBSD # @@ -44,6 +44,9 @@ INCLUDES+= -I/usr/include COPTS= ${INCLUDES} ${IDENT} -DKERNEL -include opt_global.h CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} +# Use the system default for genassym +GEN_CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} + # Select the correct set of tools. Can't set OBJFORMAT here because it # doesn't get exported into the environment. .if ${KERNFORMAT} == "elf" @@ -165,10 +168,10 @@ assym.s: genassym genassym.o: ${I386}/i386/genassym.c rm -f ./machine ; ln -s ${I386}/include ./machine - ${CC} -c ${CFLAGS} -UKERNEL ${I386}/i386/genassym.c + ${CC} -c ${GEN_CFLAGS} -UKERNEL ${I386}/i386/genassym.c genassym: genassym.o - ${CC} ${CFLAGS} genassym.o -o ${.TARGET} + ${CC} ${GEN_CFLAGS} genassym.o -o ${.TARGET} ${SYSTEM_OBJS}: opt_global.h diff --git a/sys/pc98/conf/Makefile.pc98 b/sys/pc98/conf/Makefile.pc98 index a6a6cf6c876a..de8f3591d8a4 100644 --- a/sys/pc98/conf/Makefile.pc98 +++ b/sys/pc98/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.36 1998/09/01 07:18:09 kato Exp $ +# $Id: Makefile.pc98,v 1.37 1998/09/05 02:35:21 kato Exp $ # # Makefile for FreeBSD # @@ -44,6 +44,9 @@ INCLUDES+= -I/usr/include COPTS= ${INCLUDES} ${IDENT} -DKERNEL -include opt_global.h CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} +# Use the system default for genassym +GEN_CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} + # Select the correct set of tools. Can't set OBJFORMAT here because it # doesn't get exported into the environment. .if ${KERNFORMAT} == "elf" @@ -165,10 +168,10 @@ assym.s: genassym genassym.o: ${I386}/i386/genassym.c rm -f ./machine ; ln -s ${I386}/include ./machine - ${CC} -c ${CFLAGS} -UKERNEL ${I386}/i386/genassym.c + ${CC} -c ${GEN_CFLAGS} -UKERNEL ${I386}/i386/genassym.c genassym: genassym.o - ${CC} ${CFLAGS} genassym.o -o ${.TARGET} + ${CC} ${GEN_CFLAGS} genassym.o -o ${.TARGET} ${SYSTEM_OBJS}: opt_global.h |
