summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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