diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-11-03 21:00:50 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-11-03 21:00:50 +0000 |
commit | 10fe91e8e7f7fc54723594cf13c785a61e550697 (patch) | |
tree | ea1cb3d944b11113e42ce13f8f332a70ff6804ce | |
parent | ea1364829e3249efc9ef9e0ecbdd4e0909edff13 (diff) |
Formerly Makefile.~2~
-rw-r--r-- | boot/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/boot/Makefile b/boot/Makefile index b011d262..f492ca39 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -15,9 +15,9 @@ # along with the GNU Hurd; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -#include ../Makeconf +include ../Makeconf -OBJS = boot.o notifyServer.o execServer.o deviceServer.o +OBJS = boot.o notifyServer.o execServer.o deviceServer.o syscall.o boot: $(OBJS) $(link) @@ -25,13 +25,16 @@ boot: $(OBJS) boot.o: notify_S.h exec_S.h device_S.h notify_S.h notifyServer.c: $(headers)/mach/notify.defs - $(MIG) $< -user /dev/null -header /dev/null \ + $(CPP) $(CPPFLAGS) $< | \ + $(MIGCOM) -user /dev/null -header /dev/null \ -sheader notify_S.h exec_S.h execServer.c: $(headers)/hurd/exec.defs - $(MIG) $< -user /dev/null -header /dev/null \ + $(CPP) $(CPPFLAGS) $< -DSERVERPREFIX=S_ | \ + $(MIGCOM) -user /dev/null -header /dev/null \ -sheader exec_S.h device_S.h deviceServer.c: $(headers)/device/device.defs - $(MIG) $< -user /dev/null -header /dev/null \ + $(CPP) $(CPPFLAGS) $< | \ + $(MIGCOM) -user /dev/null -header /dev/null \ -sheader device_S.h |