treeview-tutorial-xml/examples/custom-list-model-sorted/Makefile
2014-07-23 10:02:16 +02:00

13 lines
242 B
Makefile

CC = gcc
OBJS = main.o custom-list.o
CFLAGS = -g -O2 `pkg-config --cflags gtk+-2.0`
customlist-sorted: $(OBJS)
gcc -o customlist-sorted $(OBJS) `pkg-config --libs gtk+-2.0`
clean:
rm $(OBJS) customlist-sorted 2>/dev/null || /bin/true