diff options
Diffstat (limited to 'pixmaps/tools/Makefile')
| -rw-r--r-- | pixmaps/tools/Makefile | 11 |
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 + |
