diff options
author | Miles Bader <miles@gnu.org> | 1995-05-05 14:13:41 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-05-05 14:13:41 +0000 |
commit | 25acd0381b899ca02c38541aaeb4ab0fa22a1edf (patch) | |
tree | 20d6a269556c4c4050f22e4fa326c6b2412f9592 /libps | |
parent | 011353bddd4ae4d7a873395705286a596ddc4313 (diff) |
Compile our own msg & term user stubs to add msg timeouts.
Diffstat (limited to 'libps')
-rw-r--r-- | libps/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libps/Makefile b/libps/Makefile index 651db5e8..a3e84449 100644 --- a/libps/Makefile +++ b/libps/Makefile @@ -27,9 +27,14 @@ SRCS = context.c filters.c fmt.c host.c proclist.c procstat.c spec.c \ LCLHDRS=ps.h installhdrs=ps.h -OBJS = $(subst .c,.o,$(SRCS)) +MIGSTUBS=msgUser.o termUser.o + +OBJS = $(subst .c,.o,$(SRCS)) $(MIGSTUBS) CPPFLAGS += -I../lib +MIGCOMUFLAGS=-subrprefix __ +msg-MIGUFLAGS = -D'MSG_IMPORTS=waittime 1000;' +term-MIGUFLAGS = -D'TERM_IMPORTS=waittime 1000;' include ../Makeconf |