diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-12-03 03:15:14 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-12-03 03:15:14 +0000 |
commit | 130e42dc78f67aa7b769ea88a3207d00e9918757 (patch) | |
tree | 43005539c02bf1e5127e50750221d17df39ff5ea /libiohelp | |
parent | 0ad68e2accfb2d76561a629572f7a73c6dc659d2 (diff) |
Formerly Makefile.~2~
Diffstat (limited to 'libiohelp')
-rw-r--r-- | libiohelp/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libiohelp/Makefile b/libiohelp/Makefile index 89c4fb04..374f7ee1 100644 --- a/libiohelp/Makefile +++ b/libiohelp/Makefile @@ -20,14 +20,18 @@ dir := libioserver include ../Makeconf OBJS = get_conch.o handle_io_get_conch.o handle_io_release_conch.o \ - initialize_conch.o server_get_conch.o + initialize_conch.o verify_user_conch.o # Make sure we get local copies of the headers we install. CPPFLAGS := -I. $(CPPFLAGS) -all: libioserver.a($OBJS) +all: libioserver.a(__.SYMDEF) -$(hurdinst)/lib/libioserver.a: libioserver.a($OBJS) +libioserver.a(__.SYMDEF): $(OBJS) + ar r $@ $? + ranlib $@ + +$(hurdinst)/lib/libioserver.a: libioserver.a(__.SYMDEF) cp libioserver.a $@ ranlib $@ |