summaryrefslogtreecommitdiff
path: root/libports/Makefile
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-08-24 14:26:30 +0000
committerMiles Bader <miles@gnu.org>1995-08-24 14:26:30 +0000
commitf0e54d6fdb214ebcabf0f254cb9267044b9154a5 (patch)
tree2f78ad7301b8850480f183abbac6e929dab2e7c1 /libports/Makefile
parente36481a755fcff7cfe5432e3c8c099ac579e1576 (diff)
(OBJS): Use :.c=.o notation.
(REMHDRS): Removed. Order changed a bit.
Diffstat (limited to 'libports/Makefile')
-rw-r--r--libports/Makefile8
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