Gergely Polonkai
aa71f8211d
This is the latest version found at http://scentric.net/tutorial/treeview-tutorial-xml.tar.gz
13 lines
221 B
Makefile
13 lines
221 B
Makefile
|
|
CC = gcc
|
|
|
|
OBJS = main.o custom-list.o
|
|
|
|
CFLAGS = -g -O2 `pkg-config --cflags gtk+-2.0`
|
|
|
|
customlist: $(OBJS)
|
|
gcc -o customlist $(OBJS) `pkg-config --libs gtk+-2.0`
|
|
|
|
clean:
|
|
rm $(OBJS) customlist 2>/dev/null || /bin/true
|