diff options
| author | 2008-09-07 22:36:44 +0000 | |
|---|---|---|
| committer | 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 @@ | |||
| 1 | # ok, our Makefile slightly sucks at the moment | ||
| 2 | |||
| 3 | CC = gcc | ||
| 4 | CFLAGS=-Wall -std=c99 | ||
| 5 | |||
| 6 | all: | ||
| 7 | $(CC) $(CFLAGS) io-psd.c -o libpixbufloader-psd.so \ | ||
| 8 | `pkg-config --cflags gtk+-2.0` \ | ||
| 9 | -shared -fpic -DGDK_PIXBUF_ENABLE_BACKEND | ||
| 10 | |||
| 11 | # and then run the following as root: | ||
| 12 | # gdk-pixbuf-query-loaders libpixbufloader-psd.so >> /etc/gtk-2.0/gdk-pixbuf.loaders | ||
| 13 | |||
| 14 | |||
