diff options
author | Roland McGrath <roland@gnu.org> | 1994-05-05 11:52:23 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-05-05 11:52:23 +0000 |
commit | c01df53fe467e0e55988cae87e31bb7b8dba2289 (patch) | |
tree | 9a009eaa60447c2205144f4e821974c071ca88ea | |
parent | 596086b1dece6d7b9d68dae0a537d90193ce79dc (diff) |
Formerly Makefile.~9~
-rw-r--r-- | init/Makefile | 12 | ||||
-rw-r--r-- | proc/Makefile | 18 |
2 files changed, 15 insertions, 15 deletions
diff --git a/init/Makefile b/init/Makefile index bc070076..7edc0db8 100644 --- a/init/Makefile +++ b/init/Makefile @@ -34,16 +34,16 @@ install: init $(hurdroot) cp init $(hurdroot)/hurd/init -startup_S.h startupServer.c: $(headers)/hurd/startup.defs $(headers)/hurd/hurd_types.defs - $(CPP) $(CPPFLAGS) $(headers)/hurd/startup.defs \ +startup_S.h startupServer.c: $(includedir)/hurd/startup.defs $(includedir)/hurd/hurd_types.defs + $(CPP) $(CPPFLAGS) $(includedir)/hurd/startup.defs \ | $(MIGCOM) -prefix S_ -sheader startup_S.h -header /dev/null -user /dev/null -startup_reply.h startup_replyUser.c: $(headers)/hurd/startup_reply.defs $(headers)/hurd/hurd_types.defs - $(CPP) $(CPPFLAGS) $(headers)/hurd/startup_reply.defs \ +startup_reply.h startup_replyUser.c: $(includedir)/hurd/startup_reply.defs $(includedir)/hurd/hurd_types.defs + $(CPP) $(CPPFLAGS) $(includedir)/hurd/startup_reply.defs \ | $(MIGCOM) -server /dev/null -notify_S.h notifyServer.c: $(headers)/mach/notify.defs - $(CPP) $(CPPFLAGS) $(headers)/mach/notify.defs \ +notify_S.h notifyServer.c: $(includedir)/mach/notify.defs + $(CPP) $(CPPFLAGS) $(includedir)/mach/notify.defs \ | $(MIGCOM) -sheader notify_S.h -header /dev/null -user /dev/null clean: diff --git a/proc/Makefile b/proc/Makefile index 0625faaf..61151f2f 100644 --- a/proc/Makefile +++ b/proc/Makefile @@ -47,20 +47,20 @@ notify.o: notify_S.h wait.o: process_reply.h msg.h interrupt_S.h mgt.o: proc_exc_S.h proc_exc.h proc_excrepl.h proc_excrepl_S.h -proc_S.h processServer.c: $(headers)/hurd/process.defs $(headers)/hurd/hurd_types.defs - $(CPP) $(CPPFLAGS) $(PROCMIGOPTS) $(headers)/hurd/process.defs \ +proc_S.h processServer.c: $(includedir)/hurd/process.defs $(includedir)/hurd/hurd_types.defs + $(CPP) $(CPPFLAGS) $(PROCMIGOPTS) $(includedir)/hurd/process.defs \ | $(MIGCOM) -sheader proc_S.h -user /dev/null -header /dev/null -process_reply.h process_replyUser.c: $(headers)/hurd/process_reply.defs $(hurd/hurd_types.defs) - $(CPP) $(CPPFLAGS) $(headers)/hurd/process_reply.defs \ +process_reply.h process_replyUser.c: $(includedir)/hurd/process_reply.defs $(hurd/hurd_types.defs) + $(CPP) $(CPPFLAGS) $(includedir)/hurd/process_reply.defs \ | $(MIGCOM) -server /dev/null -interrupt_S.h interruptServer.c: $(headers)/hurd/interrupt.defs - $(CPP) $(CPPFLAGS) $(PROCMIGOPTS) $(headers)/hurd/interrupt.defs \ +interrupt_S.h interruptServer.c: $(includedir)/hurd/interrupt.defs + $(CPP) $(CPPFLAGS) $(PROCMIGOPTS) $(includedir)/hurd/interrupt.defs \ | $(MIGCOM) -sheader interrupt_S.h -user /dev/null -header /dev/null notify_S.h notifyServer.c: - $(CPP) $(CPPFLAGS) $(headers)/mach/notify.defs \ + $(CPP) $(CPPFLAGS) $(includedir)/mach/notify.defs \ | $(MIGCOM) -sheader notify_S.h -header /dev/null -user /dev/null proc_exc_S.h proc_excUser.c proc_excServer.c proc_exc.h: proc_exc.defs @@ -75,8 +75,8 @@ proc_excrepl_S.h proc_excreplUser.c proc_excreplServer.c proc_excrepl.h: proc_ex # The reason for -Dout= is to prevent errors for get_init_port, # get_init_ports, get_init_int, get_init_ints, get_dtable, and get_fd. # We don't use those, so we're safe in breaking them. -msg.h msgUser.c: $(headers)/hurd/msg.defs $(headers)/hurd/hurd_types.defs - $(CPP) $(CPPFLAGS) -Droutine=simpleroutine -Dout= $(headers)/hurd/msg.defs \ +msg.h msgUser.c: $(includedir)/hurd/msg.defs $(includedir)/hurd/hurd_types.defs + $(CPP) $(CPPFLAGS) -Droutine=simpleroutine -Dout= $(includedir)/hurd/msg.defs \ | $(MIGCOM) -prefix nowait_ -server /dev/null clean: |