X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=Makefile;h=c5e52eb85e0a40e038dfa1aef7febacb38b34eab;hb=5443c3705048a110ece3acd77d0ecb1b5bf3619d;hp=f16a8313225860e8d44c399d192f0d6adca02999;hpb=758f31020accdd5904c4ceb517f296fe2e22977e;p=akamaru diff --git a/Makefile b/Makefile index f16a831..c5e52eb 100644 --- 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)