]> git.cworth.org Git - akamaru/blob - Makefile
c98106c323de14eabc4cb3b82e81c5ea98a7c7cb
[akamaru] / Makefile
1 CFLAGS = -Wall -g
2 CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo)
3 LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo)
4 LDFLAGS = -g
5
6 target = akamaru
7 objs = akamaru.o main.o
8
9 $(target) : $(objs)
10
11 clean :
12         rm $(target) $(objs)