diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 14:26:30 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 14:26:30 +0000 |
commit | f0e54d6fdb214ebcabf0f254cb9267044b9154a5 (patch) | |
tree | 2f78ad7301b8850480f183abbac6e929dab2e7c1 /libports/Makefile | |
parent | e36481a755fcff7cfe5432e3c8c099ac579e1576 (diff) |
(OBJS): Use :.c=.o notation.
(REMHDRS): Removed.
Order changed a bit.
Diffstat (limited to 'libports/Makefile')
-rw-r--r-- | libports/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libports/Makefile b/libports/Makefile index c7d6b44c..f93a8d74 100644 --- a/libports/Makefile +++ b/libports/Makefile @@ -21,6 +21,7 @@ dir := libports makemode := library +libname = libports SRCS = create-bucket.c create-class.c allocate-port.c intern-external-port.c \ reallocate-port.c reallocate-from-external.c destroy-right.c \ lookup-port.c port-ref.c port-ref-weak.c port-deref.c port-deref-weak.c \ @@ -30,12 +31,9 @@ SRCS = create-bucket.c create-class.c allocate-port.c intern-external-port.c \ resume-bucket-rpcs.c resume-all-rpcs.c interrupt-rpc.c \ init.c complete-deallocate.c get-right.c count-class.c count-bucket.c \ enable-class.c enable-bucket.c bucket-iterate.c stubs.c - -OBJS = $(subst .c,.o,$(SRCS)) LCLHDRS = ports.h -REMHDRS = ../libihash/ihash.h -libname = libports installhdrs = ports.h -include ../Makeconf +OBJS = $(SRCS:.c=.o) +include ../Makeconf |