diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-03-21 20:51:48 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-03-21 20:51:48 +0000 |
commit | 7876f3b04c8272994af056e00f9e770053f37b8c (patch) | |
tree | 47897858467a2fd1563586bf228241a757a9b526 /init | |
parent | e4d2a6464effe6368348f570539f42110013ab77 (diff) |
Formerly Makefile.~3~
Diffstat (limited to 'init')
-rw-r--r-- | init/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/init/Makefile b/init/Makefile index 5defda85..68a66ee3 100644 --- a/init/Makefile +++ b/init/Makefile @@ -21,5 +21,20 @@ include ../Makeconf DIST_FILES = Makefile init.c +OBJS = init.o startupServer.o startup_replyUser.o + $(link) + +install: + 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 \ + | $(MIGCOM) -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 \ + | $(MIGCOM) -server /dev/null + clean: rm -f init *.o |