diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-04-23 18:07:36 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-04-23 18:07:36 +0000 |
commit | 8224c19990c4e8098ceac4cbd391603a76252014 (patch) | |
tree | 0255fc1cad1f15b62e8b81ad8a7410df005dbeb5 /Makefile.in | |
parent | 5989dac3caaa1e76896f8ec70128dba93a5ecccc (diff) | |
download | gnumach-8224c19990c4e8098ceac4cbd391603a76252014.tar.gz gnumach-8224c19990c4e8098ceac4cbd391603a76252014.tar.bz2 gnumach-8224c19990c4e8098ceac4cbd391603a76252014.zip |
Wed Apr 23 13:21:23 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* configure.in (BUILD_CC): Use AC_CHECK_PROGS, not AC_CHECK_PROG,
since we are checking multiple names.
* configure.in (kdb): New --enable option.
* Makefile.in (DEFINES): Add @DEFS@.
* Makefile.in (clean, distclean, mostlyclean, maintainter-clean):
New targets.
(all-archs-configures): New variable.
(MIG): Change to ./local-mig.
(./local-mig): Change to build this instead of ./mig
(check-clib-routines): Use nm -g in case there are local symbols.
Suggested by Matthew Wilcox (willy@odie.barnet.ac.uk).
Fri Apr 18 15:25:10 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* configure.in: Add AC_PREREQ for version 2.12.
* i386/Drivers.in: Likewise.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index c549d8e5..dd5f29f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52,7 +52,7 @@ INSTALL_DATA=$(INSTALL) -m 644 CFLAGS=@CFLAGS@ # We build these locally -MIG=./mig +MIG=./local-mig MIGCOM=./migcom all: @@ -62,6 +62,7 @@ all-archs = i386 all-archs-subdirs = $(patsubst %,$(srcdir)/%/Subdirs,$(all-archs)) all-archs-files = $(patsubst %,$(srcdir)/%/Files,$(all-archs)) +all-archs-configures = $(patsubst %,$(srcdir)/%/configure,$(all-archs)) # Files distributed from the top level directory: topfiles = ChangeLog ChangeLog.0 ChangeLog.00 Drivers.macros Makefile.in \ @@ -238,7 +239,7 @@ clib-routines.o: $(installed-clib) # extra symbols. kernel: check-clib-routines check-clib-routines: clib-routines.o - test `echo $(clib-routines) | wc -w` -eq `nm $< | wc -l` && touch check-clib-routines + test `echo $(clib-routines) | wc -w` -eq `nm -g $< | wc -l` && touch check-clib-routines # Empty dependency file @@ -267,7 +268,7 @@ vpath %.srv $(srcdir)/device $(srcdir)/ipc $(srcdir)/kern # Compilation flags # -DEFINES += -DMACH -DCMU -DMACH_KERNEL -DKERNEL +DEFINES += -DMACH -DCMU -DMACH_KERNEL -DKERNEL @DEFS@ INCLUDES += -I. -I$(srcdir) -I$(srcdir)/include \ -I$(srcdir)/bogus -I$(srcdir)/util -I$(srcdir)/kern -I$(srcdir)/device @@ -279,8 +280,28 @@ CPPFLAGS += -nostdinc $(DEFINES) $(INCLUDES) MIGFLAGS += $(CPPFLAGS) +# Standard targets + all: kernel $(cross-migcom) cross-mig +clean: + mv device-drivers.h FOO + rm -f *.o *.d kernel cross-migcom cross-mig migcom local-mig + rm -f *.symc *.symc.o *_user.c *_server.c *.h + rm -f *.migs_d *.migsh_d *.migu_d *.miguh_d + mv FOO device-drivers.h + +distclean: clean + rm -f config.status Makefile driverlist + +mostlyclean: distclean + rm -f $(srcdir)/mig/lexxer.c + rm -f $(srcdir)/mig/parser.c $(srcdir)/mig/parser.h + +maintainer-clean: mostlyclean + rm -f $(srcdir)/configure $(all-archs-configures) + + # # Kernel Image @@ -534,12 +555,12 @@ $(srcdir)/mig/parser.c $(srcdir)/mig/parser.h: $(srcdir)/mig/parser.y # Version of mig script that looks for the right local tools ifeq ($(cross_compiling),yes) -./mig: $(srcdir)/mig/mig.sh Makefile +./local-mig: $(srcdir)/mig/mig.sh Makefile sed -e 's,@MIGDIR@,.,g' \ -e 's,@CPP@,${BUILD_CC} -x c-header -E,g' \ $< >$@.tmp && chmod +x $@.tmp && mv -f $@.tmp $@ else -./mig: $(srcdir)/mig/mig.sh Makefile +./local-mig: $(srcdir)/mig/mig.sh Makefile sed -e 's,@MIGDIR@,.,g' \ -e 's,@CPP@,${CC} -x c-header -E,g' \ $< >$@.tmp && chmod +x $@.tmp && mv -f $@.tmp $@ |