Initial check-in
[him-cellwriter] / Makefile
1 LIBS = gtk+-2.0 glib-2.0 gconf-2.0 hildon-1 hildon-input-method-ui-3.0 hildon-input-method-framework-3.0
2
3 build:
4         LIBS='$(LIBS)' make -C src
5
6 clean:
7         make -C src clean
8
9 install: src/him_cellwriter.so default_profile
10         mkdir -p $(prefix)/lib/hildon-input-method/
11         install src/him_cellwriter.so $(prefix)/lib/hildon-input-method/
12         mkdir -p $(prefix)/share/him_cellwriter
13         install default_profile $(prefix)/share/him_cellwriter/profile
14
15 configure:
16         @echo '#!/bin/sh' > configure
17         @echo 'echo Looking for $(LIBS) && echo "Found!" && echo Run make to build' >> configure
18         @echo 'pkg-config --print-errors $(LIBS)' >> configure
19         @chmod +x configure
20
21 distclean: