From 5d416e8e2f2d56552d3b70855522353888269d65 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Sat, 24 Oct 2009 20:47:24 +0200 Subject: Publish pixmap include maker tool This a support tool for converting images to a Pascal include file. Published on people demand. --- pixmaps/tools/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pixmaps/tools/Makefile (limited to 'pixmaps/tools/Makefile') 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 + -- cgit v1.2.3