]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/router/Makefile
removed the "libxml.h" dependency which is unnecessary (and requires source)
[OpenSRF.git] / src / router / Makefile
1 # set this shell variable prior to calling make to run with malloc_check enabled
2 #MALLOC_CHECK_=1 # XXX debug only
3
4 CC = gcc
5 CC_OPTS = -Wall -O2 -I /usr/include/libxml2 -I /usr/include/libxml2/libxml -I ../../include
6 LD_OPTS = -lxml2
7 LP=../libtransport
8 LIB_SOURCES = $(LP)/generic_utils.c $(LP)/transport_socket.c $(LP)/transport_session.c $(LP)/transport_message.c $(LP)/transport_client.c
9
10 all: router router_query
11
12 router_query: router_query.c
13         $(CC) $(CC_OPTS) -L ../../lib -lopensrf_transport -lxml2 router_query.c -o router_query
14
15 # The router is compiled as a static binary because of some 
16 # necessary #defines that would break the library
17 router: 
18         $(CC) $(LD_OPTS) -D_ROUTER $(CC_OPTS)   $(LIB_SOURCES) router.c -o $@ 
19
20 clean:
21         /bin/rm -f router  router_query