Initial commit

This is the latest version found at
http://scentric.net/tutorial/treeview-tutorial-xml.tar.gz
This commit is contained in:
2014-07-23 01:28:11 +02:00
commit aa71f8211d
44 changed files with 50184 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CC = gcc
CFLAGS = -Wall -g -O2 `pkg-config --cflags gtk+-2.0`
all: simple-list
simple-list: list.o
gcc -o simple-list list.o `pkg-config --libs gtk+-2.0`
clean:
rm -f *.o simple-list *.c~ *.h~ 2>/dev/null