Initial commit
This is the latest version found at http://scentric.net/tutorial/treeview-tutorial-xml.tar.gz
This commit is contained in:
14
examples/treeview-demo/Makefile
Normal file
14
examples/treeview-demo/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
CC = gcc
|
||||
|
||||
CFLAGS = -g -O2 `pkg-config --cflags gtk+-2.0`
|
||||
|
||||
all: treeview-demo icon-with-text
|
||||
|
||||
treeview-demo: main.o
|
||||
gcc -o treeview-demo main.o `pkg-config --libs gtk+-2.0`
|
||||
|
||||
icon-with-text: main-icon-with-text.o
|
||||
gcc -o icon-with-text main-icon-with-text.o `pkg-config --libs gtk+-2.0`
|
||||
clean:
|
||||
rm -f *.o treeview-demo icon-with-text 2>/dev/null
|
Reference in New Issue
Block a user