This is the latest version found at http://scentric.net/tutorial/treeview-tutorial-xml.tar.gz
13 lines
226 B
Makefile
13 lines
226 B
Makefile
|
|
CC = gcc
|
|
|
|
OBJS = guitreemodelfilter.o main-filter-rows.o
|
|
|
|
CFLAGS = -g -O2 `pkg-config --cflags gtk+-2.0`
|
|
|
|
all: $(OBJS)
|
|
gcc -o filter-rows $(OBJS) `pkg-config --libs gtk+-2.0`
|
|
|
|
clean:
|
|
rm -f filter-rows $(OBJS) 2>/dev/null
|