diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-08-05 19:59:56 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-08-05 19:59:56 +0000 |
commit | 88cd0f209f851406514eadf6fb6f21b2929ba8a7 (patch) | |
tree | 6fd7b9423d5fddbc469a5806a9758c0068adbe24 /Makeconf | |
parent | 8fb14ba9ff6f8710e4c8d77e5c3c8e46d71500d7 (diff) |
Formerly Makeconf.~52~
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -131,7 +131,7 @@ endif ifeq ($(doinst),many) all: $(targets) install: $(targets) - for i in $(targets); do; $(INSTALL_BIN) $$i $(installationdir)/$$i; done + for i in $(targets) ; do $(INSTALL_BIN) $$i $(installationdir)/$$i ; done endif ifeq ($(makemode),library) @@ -253,17 +253,11 @@ ht := $(hurdsource)/hurd/hurd_types.defs # Where to find .defs files. -vpath %.defs $(hurdsource)/hurd:$(includedir)/mach +vpath %.defs $(hurdsource)/hurd:$(includedir)/mach:$(includedir)/device # Files generated from the Hurd .defs files depend on hurd_types.defs. $(foreach if,$(hurddefs),$(if)_S.h $(if)Server.c $(if)_U.h $(if)User.c): $(ht) -# Server stubs from Mach interfaces. -machdefs := notify memory_object - -# Server stubs from Mach device interfaces. -devicedefs := device_reply device - FORCE: |