summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar jan.dudek2008-12-17 12:57:23 +0000
committerGravatar jan.dudek2008-12-17 12:57:23 +0000
commit74ee904fedfb68265863a61bd4e5dc4ebb4fc0b6 (patch)
treed00d4de11d6b27f6c126ce82d41dcd093bc50073 /Makefile
parentcaa9606b3f4f7d112e19b7f1d9471c76e1f8baf6 (diff)
downloadgdk-pixbuf-psd-74ee904fedfb68265863a61bd4e5dc4ebb4fc0b6.tar.gz
gdk-pixbuf-psd-74ee904fedfb68265863a61bd4e5dc4ebb4fc0b6.tar.bz2
Makefile, readme
git-svn-id: http://gdk-pixbuf-psd.googlecode.com/svn/trunk@15 c5539ac3-5556-0410-9a1f-7faf0b045682
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 6a54008..d2bfbec 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,3 @@
1# ok, our Makefile slightly sucks at the moment
2
3CC = gcc 1CC = gcc
4CFLAGS=-Wall -std=c99 2CFLAGS=-Wall -std=c99
5 3
@@ -11,13 +9,10 @@ all:
11 -shared -fpic -DGDK_PIXBUF_ENABLE_BACKEND 9 -shared -fpic -DGDK_PIXBUF_ENABLE_BACKEND
12 10
13clean: 11clean:
12 rm libpixbufloader-psd.so
14 13
15install: 14install:
16 chmod 644 libpixbufloader-psd.so 15 chmod 644 libpixbufloader-psd.so
17 mkdir -p $(DESTDIR)/usr/lib/gtk-2.0/2.10.0/loaders/ 16 mkdir -p $(DESTDIR)/usr/lib/gtk-2.0/2.10.0/loaders/
18 cp libpixbufloader-psd.so $(DESTDIR)/usr/lib/gtk-2.0/2.10.0/loaders/ 17 cp libpixbufloader-psd.so $(DESTDIR)/usr/lib/gtk-2.0/2.10.0/loaders/
19 18
20# and then run the following as root:
21# gdk-pixbuf-query-loaders libpixbufloader-psd.so >> /etc/gtk-2.0/gdk-pixbuf.loaders
22
23