summaryrefslogtreecommitdiffstats
path: root/makefiles/arch/maemo.mk
diff options
context:
space:
mode:
Diffstat (limited to 'makefiles/arch/maemo.mk')
-rw-r--r--makefiles/arch/maemo.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/makefiles/arch/maemo.mk b/makefiles/arch/maemo.mk
new file mode 100644
index 0000000..336996b
--- /dev/null
+++ b/makefiles/arch/maemo.mk
@@ -0,0 +1,33 @@
+include $(ROOTDIR)/makefiles/arch/unix.mk
+
+INSTALLDIR = /usr
+IMAGEDIR = $(INSTALLDIR)/share/%APPLICATION_NAME%/icons
+APPIMAGEDIR = $(IMAGEDIR)
+
+CC = ccache gcc
+AR = ar rsu
+
+DEPGEN = $(CC) -MM
+RM = rm -rvf
+RM_QUIET = rm -rf
+
+LD = g++
+ifeq "$(UI_TYPE)" "maemo5"
+ CFLAGS = -pipe -fno-exceptions -fno-rtti -Wall -Wno-ctor-dtor-privacy -W -pthread -DMAEMO_VERSION=5
+ GTKINCLUDE = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DMAEMO_CHANGES -I/usr/include/hildon-1 -I/usr/include/hildon-fm-2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/conic
+ UILIBS = -lhildon-1 -lhildonfm -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgmodule-2.0 -ldl -lfreetype -lz -lfontconfig -lpng12 -lXrender -lX11 -losso -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -lconic
+else ifeq "$(UI_TYPE)" "maemo4"
+ CFLAGS = -pipe -fno-exceptions -fno-rtti -Wall -Wno-ctor-dtor-privacy -W -pthread -mthumb -DMAEMO_VERSION=4
+ GTKINCLUDE = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DMAEMO_CHANGES -I/usr/include/hildon-1 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/conic
+ UILIBS = -lhildon-1 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgmodule-2.0 -ldl -lfreetype -lz -lfontconfig -lpng12 -lXrender -lX11 -losso -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -lconic
+else # ifeq "$(UI_TYPE)" "maemo2/3"
+ CFLAGS = -pipe -fno-exceptions -fno-rtti -Wall -Wno-ctor-dtor-privacy -W -pthread -mthumb
+ GTKINCLUDE = -I/usr/include/libxml2 -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/hildon-widgets -I/usr/include/hildon-lgpl -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/conic
+ UILIBS = -lz -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lhildonwidgets -losso
+ ifeq "$(UI_TYPE)" "maemo2"
+ CFLAGS += -DMAEMO_VERSION=2
+ else # ifeq "$(UI_TYPE)" "maemo3"
+ CFLAGS += -DMAEMO_VERSION=3
+ UILIBS += -lconic
+ endif
+endif