Merged updated scripts from vimacs, updated Makefile with some deployment rules
[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 pnd_pndfiles.o pnd_apps.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 testdata/apps/*.pnd testdata/dotdesktop/*.png deployment/usr/lib/libpnd* deployment/usr/bin/pndnotifyd deployment/usr/pandora/scripts/* deployment/etc/sudoers deployment/etc/init.d/pndnotifyd
29         find . -name "*~*" -exec rm {} \; -print
30
31 # component targets
32 #
33
34 libpnd.a:       ${ALLOBJ} ${XMLOBJ}
35         ${AR} r ${LIB} ${ALLOBJ} ${XMLOBJ}
36         ${RANLIB} ${LIB}
37
38 libpnd.so.1:    ${ALLOBJ} ${XMLOBJ}
39         ${CC} -shared -Wl,-soname,${SOLIB} -o ${SOLIB1} ${ALLOBJ} ${XMLOBJ}
40         ln -f -s ${SOLIB1} ${SOLIB}
41
42 pndnotifyd:     pndnotifyd.o ${SOLIB1}
43         ${CC} -lstdc++ -o bin/pndnotifyd pndnotifyd.o ${SOLIB1}
44
45 # deployment and assembly components
46 #
47
48 pnd:
49         # build x86_ls with icon
50         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_ls.pnd -d x86_ls -i x86_ls/zeldaicon.png -x x86_ls/PXML.xml
51         # build x86_echo with no icon
52         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_echo.pnd -d x86_echo -x x86_echo/PXML.xml
53
54 deploy: 
55         # populate deployment directory for copying into image bakes
56         # make dirs
57         mkdir -p deployment/etc/pandora/conf
58         mkdir -p deployment/usr/lib
59         mkdir -p deployment/usr/bin
60         mkdir -p deployment/usr/pandora/apps
61         mkdir -p deployment/usr/pandora/scripts
62         mkdir -p deployment/etc/init.d/
63         # copy in goodies
64         cp libpnd* deployment/usr/lib
65         cp bin/pndnotifyd deployment/usr/bin
66         cp testdata/scripts/* deployment/usr/pandora/scripts
67         # copy in freebee .pnd apps to /usr/pandora/apps
68         # add pndnotify to etc/rc/startup-whatever
69         cp testdata/sh/pndnotifyd deployment/etc/init.d/pndnotifyd
70         cp testdata/sh/sudoers deployment/etc/sudoers
71
72 # test tool targets
73 #
74
75 conftest:       conftest.o ${LIB}
76         ${CC} -lstdc++ -o bin/conftest conftest.o libpnd.a
77
78 discotest:      discotest.o ${LIB}
79         ${CC} -lstdc++ -o bin/discotest discotest.o libpnd.a
80
81 notifytest:     notifytest.o ${LIB}
82         ${CC} -lstdc++ -o bin/notifytest notifytest.o libpnd.a
83
84 locatetest:     locatetest.o ${SOLIB1}
85         ${CC} -lstdc++ -o bin/locatetest locatetest.o ${SOLIB1}