diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-26 00:00:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-26 00:00:27 +0000 |
commit | 9799b984482f7ce54d7f627561539116eb9931ca (patch) | |
tree | 7fc63291aea6e5902ad9a0bf5f0fb2345db69be2 /libc/misc/sysvipc/Makefile | |
parent | b1117fc3109dd2b13d5bbbb57043f67d1105fbe3 (diff) |
Add in message queue support, based on work from <tapu@371.net>.
This is required to compile util-linux
Diffstat (limited to 'libc/misc/sysvipc/Makefile')
-rw-r--r-- | libc/misc/sysvipc/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libc/misc/sysvipc/Makefile b/libc/misc/sysvipc/Makefile index d94531788..8280137ca 100644 --- a/libc/misc/sysvipc/Makefile +++ b/libc/misc/sysvipc/Makefile @@ -31,10 +31,13 @@ MOBJ=semget.o semctl.o semop.o MSRC2=shm.c MOBJ2=shmat.o shmctl.o shmdt.o shmget.o +MSRC3=msgq.c +MOBJ3=msgctl.o msgget.o msgrcv.o msgsnd.o + CSRC = ftok.c COBJS=$(patsubst %.c,%.o, $(CSRC)) -OBJS=$(MOBJ) $(MOBJ2) $(COBJS) +OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS) all: $(OBJS) $(LIBC) @@ -52,6 +55,10 @@ $(MOBJ2): $(MSRC2) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o $(STRIPTOOL) -x -R .note -R .comment $*.o +$(MOBJ3): $(MSRC3) + $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o + $(STRIPTOOL) -x -R .note -R .comment $*.o + $(COBJS): %.o : %.c $(CC) $(CFLAGS) -c $< -o $@ $(STRIPTOOL) -x -R .note -R .comment $*.o |