From: erickson Date: Tue, 6 Sep 2005 15:24:48 +0000 (+0000) Subject: fixed makefile ommission X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c2cbcd368f94f554c2bcb8b45c913b5ce5038000;p=opensrf%2Fbjwebb.git fixed makefile ommission updated the JSON api stuff in json_xml.c added json_xml.o to the build target git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@526 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/gateway/Makefile b/src/gateway/Makefile index 10d0b3e..96b5eed 100644 --- a/src/gateway/Makefile +++ b/src/gateway/Makefile @@ -1,13 +1,13 @@ CCFLAGS += -DASSUME_STATELESS LDLIBS += -lobjson -lxml2 -lopensrf -all: libmod_ils_gateway.so +all: mod_ils_gateway.so install: - $(APXS2) -i -a -n ils_gateway libmod_ils_gateway.so + $(APXS2) -i -a -n ils_gateway mod_ils_gateway.so -libmod_ils_gateway.so: mod_ils_gateway.o - $(CC) -shared -W1 mod_ils_gateway.o -o libmod_ils_gateway.so +mod_ils_gateway.so: mod_ils_gateway.o + $(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) -shared -W1 mod_ils_gateway.o -o mod_ils_gateway.so mod_ils_gateway.o: mod_ils_gateway.h mod_ils_gateway.c