]> git.cworth.org Git - akamaru/blobdiff - Makefile
Improve initial icon placement.
[akamaru] / Makefile
index f16a8313225860e8d44c399d192f0d6adca02999..c5e52eb85e0a40e038dfa1aef7febacb38b34eab 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,19 @@
 CFLAGS = -Wall -g
-CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo)
-LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo)
+CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo librsvg-2.0)
+LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo librsvg-2.0)
 LDFLAGS = -g
 
 target = akamaru
-objs = akamaru.o
+objs = akamaru.o main.o
+
+all : akamaru dock
 
 $(target) : $(objs)
 
+dock : dock.o akamaru.o
+
+$(objs) dock.o : akamaru.h
+
+
 clean :
        rm $(target) $(objs)