]> git.cworth.org Git - akamaru/blob - Makefile
Add init functions for various objects, clean up model initializations.
[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 $(objs) : akamaru.h
12
13 clean :
14         rm $(target) $(objs)