treeview-tutorial-xml/examples/custom-list-model/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