And again
[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
25
26 all: ${SOLIB} ${LIB} conftest discotest notifytest locatetest pndnotifyd rawpxmltest
27
28 clean:
29         ${RM} -f ${ALLOBJ} ${XMLOBJ} ${LIB} ${SOLIB1} locatetest.o bin/locatetest conftest.o bin/conftest discotest.o bin/discotest bin/notifytest notifytest.o bin/rawpxmltest rawpxmltest.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
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 pndnotifyd:     pndnotifyd.o ${SOLIB1}
45         ${CC} -lstdc++ -o bin/pndnotifyd pndnotifyd.o ${SOLIB1}
46
47 # deployment and assembly components
48 #
49
50 pnd:
51         # build x86_ls with icon
52         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_ls.pnd -d x86_ls -i x86_ls/zeldaicon.png -x x86_ls/PXML.xml
53         # build x86_echo with no icon
54         cd testdata/pndsample; ../scripts/pnd_make.sh -p x86_echo.pnd -d x86_echo -x x86_echo/PXML.xml
55
56 deploy: 
57         # populate deployment directory for copying into image bakes
58         # make dirs
59         mkdir -p deployment/etc/pandora/conf
60         mkdir -p deployment/usr/lib
61         mkdir -p deployment/usr/bin
62         mkdir -p deployment/usr/pandora/apps
63         mkdir -p deployment/usr/pandora/scripts
64         mkdir -p deployment/etc/init.d/
65         # premake the directories that SD's mount onto; makes pndnotifyd life easier
66         mkdir -p deployment/media/mmcblk0p1
67         mkdir -p deployment/media/mmcblk1p1
68         # copy in goodies
69         cp libpnd* deployment/usr/lib
70         cp bin/pndnotifyd deployment/usr/bin
71         cp testdata/scripts/* deployment/usr/pandora/scripts
72         # copy in freebee .pnd apps to /usr/pandora/apps
73         # add pndnotify to etc/rc/startup-whatever
74         cp testdata/sh/pndnotifyd deployment/etc/init.d/pndnotifyd
75         cp testdata/sh/sudoers deployment/etc/sudoers
76
77 # test tool targets
78 #
79
80 conftest:       conftest.o ${LIB}
81         ${CC} -lstdc++ -o bin/conftest conftest.o libpnd.a
82
83 discotest:      discotest.o ${LIB}
84         ${CC} -lstdc++ -o bin/discotest discotest.o libpnd.a
85
86 notifytest:     notifytest.o ${LIB}
87         ${CC} -lstdc++ -o bin/notifytest notifytest.o libpnd.a
88
89 locatetest:     locatetest.o ${SOLIB1}
90         ${CC} -lstdc++ -o bin/locatetest locatetest.o ${SOLIB1}
91
92 rawpxmltest:    rawpxmltest.o ${LIB}
93         ${CC} -lstdc++ -o bin/rawpxmltest rawpxmltest.o ${LIB}