X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=Makefile;h=c5e52eb85e0a40e038dfa1aef7febacb38b34eab;hb=b5f68f48302a165bed1dd5f824373189eacd85b9;hp=dae1f08321e986eb98f9856914d7e5c06a6b54ff;hpb=4be5b6593af8db64cd39dba290a2c64193bcdabd;p=akamaru diff --git a/Makefile b/Makefile index dae1f08..c5e52eb 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +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 main.o +all : akamaru dock + $(target) : $(objs) -$(objs) : akamaru.h +dock : dock.o akamaru.o + +$(objs) dock.o : akamaru.h + clean : rm $(target) $(objs)