summaryrefslogtreecommitdiff
path: root/pixmaps/tools/Makefile
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-24 20:47:24 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-10-24 20:47:24 +0200
commit5d416e8e2f2d56552d3b70855522353888269d65 (patch)
tree8384638286cedc5944750d55847bbc439d813267 /pixmaps/tools/Makefile
parent9a9e840382ab9d12ee14c28f142c70be42743ba8 (diff)
downloadtuxcmd-5d416e8e2f2d56552d3b70855522353888269d65.tar.xz
Publish pixmap include maker tool
This a support tool for converting images to a Pascal include file. Published on people demand.
Diffstat (limited to 'pixmaps/tools/Makefile')
-rw-r--r--pixmaps/tools/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/pixmaps/tools/Makefile b/pixmaps/tools/Makefile
new file mode 100644
index 0000000..28f2a3e
--- /dev/null
+++ b/pixmaps/tools/Makefile
@@ -0,0 +1,11 @@
+CC = gcc
+CFLAGS = -Wall -ggdb
+
+gdk-pixbuf-pas: gdk-pixbuf-pas.c
+ $(CC) -o gdk-pixbuf-pas gdk-pixbuf-pas.c -I. -I/usr/include $(CFLAGS) `pkg-config glib-2.0 --cflags --libs`
+
+clean:
+ rm -f *.o gdk-pixbuf-pas
+
+all: gdk-pixbuf-pas
+