Allow msg service test applications to build properly.

git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1620 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Steven Dake 2008-08-04 05:21:52 +00:00
parent b9b72b5844
commit 7a59ba9d24

View File

@ -37,9 +37,9 @@ ifeq (${OPENAIS_COMPAT}, SOLARIS)
override LDFLAGS += -lnsl -lsocket -lrt
endif
LIBRARIES= ../lib/libSaCkpt.a sa_error.o
LIBRARIES= ../lib/libSaCkpt.a ../lib/libSaMsg.a sa_error.o
LIBS = $(LIBRARIES)
BINARIES= testckpt
BINARIES= testckpt testmsg testmsg2
override CFLAGS += -I../include
override LDFLAGS += -L../lib
@ -52,6 +52,12 @@ all: $(BINARIES)
testckpt: testckpt.o $(LIBRARIES)
$(CC) $(LDFLAGS) -o testckpt testckpt.o $(LIBS)
testmsg: testmsg.o $(LIBRARIES)
$(CC) $(LDFLAGS) -o testmsg testmsg.o $(LIBS)
testmsg2: testmsg2.o $(LIBRARIES)
$(CC) $(LDFLAGS) -o testmsg2 testmsg2.o $(LIBS)
clean:
rm -f *.o $(LIBRARIES) $(BINARIES)