Hacked around pndnotifyd so it supports two sets of paths now -- menu path and deskto...
[pandora-libraries.git] / Makefile
1
2 #
3 # libpnd Makefile
4 #
5
6 # tools
7 CC = ${CROSSCOMPILE}gcc
8 CXX = ${CROSSCOMPILE}g++
9 AR = ${CROSSCOMPILE}ar
10 RANLIB = ${CROSSCOMPILE}ranlib
11 RM = rm
12
13 # environment
14 VPATH = lib test apps
15 CFLAG_SO = -fPIC #-fPIC not always needed, but good to have
16 CFLAGS = -Wall -I./include -g ${CFLAG_SO}
17 CXXFLAGS = -Wall -I./include -g ${CFLAG_SO}
18
19 # code
20 LIB = libpnd.a 
21 SOLIB = libpnd.so.1         # canonicle name
22 SOLIB1 = libpnd.so.1.0.1    # versioned name
23 XMLOBJ = lib/tinyxml/tinystr.o lib/tinyxml/tinyxml.o lib/tinyxml/tinyxmlerror.o lib/tinyxml/tinyxmlparser.o
24 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 pnd_utility.o pnd_desktop.o pnd_io_gpio.o pnd_logger.o
25
26 all: ${SOLIB} ${LIB} conftest discotest notifytest pndnotifyd rawpxmltest pndvalidator loggertest pnd_run
27
28 clean:
29         ${RM} -f ${ALLOBJ} ${XMLOBJ} ${LIB} ${SOLIB1} locatetest.o bin/locatetest conftest.o bin/conftest discotest.o bin/discotest loggertest.o bin/loggertest bin/notifytest notifytest.o bin/rawpxmltest rawpxmltest.o bin/pnd_run pnd_run.o bin/pndnotifyd pndnotifyd.o ${SOLIB} testdata/dotdesktop/*.desktop testdata/menu/*.desktop testdata/apps/*.pnd testdata/dotdesktop/*.png deployment/usr/lib/libpnd* deployment/usr/bin/pndnotifyd deployment/usr/bin/pnd_run deployment/usr/pandora/scripts/* deployment/etc/sudoers deployment/etc/init.d/pndnotifyd bin/pndvalidator pndvalidator.o
30         ${RM} -rf deployment/media
31         find . -name "*~*" -exec rm {} \; -print
32
33 # component targets
34 #
35
36 libpnd.a:       ${ALLOBJ} ${XMLOBJ}
37         ${AR} r ${LIB} ${ALLOBJ} ${XMLOBJ}
38         ${RANLIB} ${LIB}
39
40 libpnd.so.1:    ${ALLOBJ} ${XMLOBJ}
41         ${CC} -shared -Wl,-soname,${SOLIB} -o ${SOLIB1} ${ALLOBJ} ${XMLOBJ}
42         ln -f -s ${SOLIB1} ${SOLIB}
43
44 ${SOLIB1}:      ${ALLOBJ} ${XMLOBJ}
45         ${CC} -shared -Wl,-soname,${SOLIB} -o ${SOLIB1} ${ALLOBJ} ${XMLOBJ}
46         ln -f -s ${SOLIB1} ${SOLIB}
47
48 pndnotifyd:     pndnotifyd.o ${SOLIB1}
49         ${CC} -lstdc++ -o bin/pndnotifyd pndnotifyd.o ${SOLIB1}
50
51 pndvalidator:   pndvalidator.o ${SOLIB1}
52         ${CC} -lstdc++ -o bin/pndvalidator pndvalidator.o ${SOLIB1}
53
54 pnd_run:        pnd_run.o ${SOLIB1}
55         ${CC} -lstdc++ -o bin/pnd_run pnd_run.o ${SOLIB1}
56
57 # deployment and assembly components
58 #
59
60 pnd:
61         # build x86_ls with icon
62         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_ls.pnd -d x86_ls -i x86_ls/zeldaicon.png -x x86_ls/PXML.xml
63         # build x86_echo with no icon
64         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_echo.pnd -d x86_echo -x x86_echo/PXML.xml
65
66 deploy: 
67         # populate deployment directory for copying into image bakes
68         # make dirs
69         mkdir -p deployment/etc/pandora/conf
70         mkdir -p deployment/usr/lib
71         mkdir -p deployment/usr/bin
72         mkdir -p deployment/usr/pandora/apps
73         mkdir -p deployment/usr/pandora/scripts
74         mkdir -p deployment/etc/init.d/
75         # premake the directories that SD's mount onto; makes pndnotifyd life easier
76         mkdir -p deployment/media/mmcblk0p1
77         mkdir -p deployment/media/mmcblk1p1
78         # copy in goodies
79         cp libpnd* deployment/usr/lib
80         cp bin/pndnotifyd deployment/usr/bin
81         cp bin/pnd_run deployment/usr/bin
82         cp testdata/scripts/* deployment/usr/pandora/scripts
83         # copy in freebee .pnd apps to /usr/pandora/apps
84         # add pndnotify to etc/rc/startup-whatever
85         cp testdata/sh/pndnotifyd deployment/etc/init.d/pndnotifyd
86         cp testdata/sh/sudoers deployment/etc/sudoers
87
88 # test tool targets
89 #
90
91 conftest:       conftest.o ${LIB}
92         ${CC} -lstdc++ -o bin/conftest conftest.o libpnd.a
93
94 discotest:      discotest.o ${LIB}
95         ${CC} -lstdc++ -o bin/discotest discotest.o libpnd.a
96
97 notifytest:     notifytest.o ${LIB}
98         ${CC} -lstdc++ -o bin/notifytest notifytest.o libpnd.a
99
100 locatetest:     locatetest.o ${SOLIB1}
101         ${CC} -lstdc++ -o bin/locatetest locatetest.o ${SOLIB1}
102
103 rawpxmltest:    rawpxmltest.o ${LIB}
104         ${CC} -lstdc++ -o bin/rawpxmltest rawpxmltest.o ${LIB}
105
106 loggertest:     loggertest.o ${LIB}
107         ${CC} -lstdc++ -o bin/loggertest loggertest.o libpnd.a