diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-11-13 00:21:56 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-11-13 00:21:56 +0000 |
commit | fc0e2647c036addc727aa347af734f1f33a258f1 (patch) | |
tree | c3ab40d609abd748f2600cabe7f159b2fce3cb64 /libiohelp/Makefile | |
parent | e881d19bded1191cf1157b212e1007ba80892e26 (diff) |
Wed Nov 6 19:26:14 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makefile (SRCS): Add iouser-create.c, iouser-dup.c
iouser-reauth.c, and iouser-free.c.
(OBJS): Compute automatically.
* iohelp.h (iohelp_create_user): New function.
* iouser-create.c: New file.
Tue Nov 5 21:51:24 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* iohelp.h (struct iouser): New type.
(iohelp_dup_iouser, iohelp_free_iouser, iohelp_reauth): New
functions.
* iouser-dup.c, iouser-reauth.c, iouser-free.c: New files.
Diffstat (limited to 'libiohelp/Makefile')
-rw-r--r-- | libiohelp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libiohelp/Makefile b/libiohelp/Makefile index 9202f9e8..61d20aa9 100644 --- a/libiohelp/Makefile +++ b/libiohelp/Makefile @@ -19,9 +19,9 @@ dir := libiohelp makemode := library SRCS = get_conch.c handle_io_get_conch.c handle_io_release_conch.c \ - initialize_conch.c verify_user_conch.c -OBJS = get_conch.o handle_io_get_conch.o handle_io_release_conch.o \ - initialize_conch.o verify_user_conch.o + initialize_conch.c verify_user_conch.c iouser-create.c \ + iouser-dup.c iouser-reauth.c iouser-free.c +OBJS = $(SRCS:.c=.o) LCLHDRS = iohelp.h HURDLIBS = threads libname = libiohelp |