]> git.cworth.org Git - akamaru/blob - Makefile
Indent to 8 columns rather than 2
[akamaru] / Makefile
1 CFLAGS = -Wall -g
2 CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo librsvg-2.0)
3 LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo librsvg-2.0)
4 LDFLAGS = -g
5
6 target = akamaru
7 objs = akamaru.o main.o
8
9 all : akamaru dock
10
11 $(target) : $(objs)
12
13 dock : dock.o akamaru.o
14
15 $(objs) dock.o : akamaru.h
16
17
18 clean :
19         rm $(target) $(objs)