diff options
author | jan.dudek | 2008-09-07 22:36:44 +0000 |
---|---|---|
committer | jan.dudek | 2008-09-07 22:36:44 +0000 |
commit | a6f8b9b9eb1f46998d5159daa25381a4b36e9ac6 (patch) | |
tree | 4aea6f33d67fa79661c5ea46c0b63c5aa64974ff /Makefile | |
parent | fe254bd0fa276971b728f20b5dd037a972c82979 (diff) | |
download | gdk-pixbuf-psd-a6f8b9b9eb1f46998d5159daa25381a4b36e9ac6.tar.gz gdk-pixbuf-psd-a6f8b9b9eb1f46998d5159daa25381a4b36e9ac6.tar.bz2 |
initial commit
git-svn-id: http://gdk-pixbuf-psd.googlecode.com/svn/trunk@2 c5539ac3-5556-0410-9a1f-7faf0b045682
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4f667b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# ok, our Makefile slightly sucks at the moment + +CC = gcc +CFLAGS=-Wall -std=c99 + +all: + $(CC) $(CFLAGS) io-psd.c -o libpixbufloader-psd.so \ + `pkg-config --cflags gtk+-2.0` \ + -shared -fpic -DGDK_PIXBUF_ENABLE_BACKEND + +# and then run the following as root: +# gdk-pixbuf-query-loaders libpixbufloader-psd.so >> /etc/gtk-2.0/gdk-pixbuf.loaders + + |