f924fa23bb20734b7141391ed102c91443eaa5ab
[pandora-libraries.git] / Makefile
1
2 #
3 # libpnd Makefile
4 #
5
6 # tools
7 CC = gcc
8 AR = ar
9 RANLIB = ranlib
10 RM = rm
11
12 # environment
13 VPATH = lib test apps
14 CFLAG_SO = -fPIC #-fPIC not always needed, but good to have
15 CFLAGS = -Wall -I./include -g ${CFLAG_SO}
16 CXXFLAGS = -Wall -I./include -g ${CFLAG_SO}
17
18 # code
19 LIB = libpnd.a 
20 SOLIB = libpnd.so.1         # canonicle name
21 SOLIB1 = libpnd.so.1.0.1    # versioned name
22 XMLOBJ = lib/tinyxml/tinystr.o lib/tinyxml/tinyxml.o lib/tinyxml/tinyxmlerror.o lib/tinyxml/tinyxmlparser.o
23 ALLOBJ = pnd_conf.o pnd_container.o pnd_discovery.o pnd_pxml.o pnd_notify.o pnd_locate.o pnd_tinyxml.o
24
25 all: ${SOLIB} ${LIB} conftest discotest notifytest locatetest pndnotifyd
26
27 clean:
28         ${RM} -f ${ALLOBJ} ${XMLOBJ} ${LIB} ${SOLIB1} locatetest.o bin/locatetest conftest.o bin/conftest discotest.o bin/discotest bin/notifytest notifytest.o bin/pndnotifyd pndnotifyd.o ${SOLIB} testdata/dotdesktop/*.desktop
29
30 libpnd.a:       ${ALLOBJ} ${XMLOBJ}
31         ${AR} r ${LIB} ${ALLOBJ} ${XMLOBJ}
32         ${RANLIB} ${LIB}
33
34 libpnd.so.1:    ${ALLOBJ} ${XMLOBJ}
35         ${CC} -shared -Wl,-soname,${SOLIB} -o ${SOLIB1} ${ALLOBJ} ${XMLOBJ}
36         ln -f -s ${SOLIB1} ${SOLIB}
37
38 conftest:       conftest.o ${LIB}
39         ${CC} -lstdc++ -o bin/conftest conftest.o libpnd.a
40
41 discotest:      discotest.o ${LIB}
42         ${CC} -lstdc++ -o bin/discotest discotest.o libpnd.a
43
44 notifytest:     notifytest.o ${LIB}
45         ${CC} -lstdc++ -o bin/notifytest notifytest.o libpnd.a
46
47 locatetest:     locatetest.o ${SOLIB1}
48         ${CC} -lstdc++ -o bin/locatetest locatetest.o ${SOLIB1}
49
50 pndnotifyd:     pndnotifyd.o ${SOLIB1}
51         ${CC} -lstdc++ -o bin/pndnotifyd pndnotifyd.o ${SOLIB1}