diff options
Diffstat (limited to 'libports')
-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 |