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/hello-world/Makefile
Normal file
14
examples/hello-world/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
CC = gcc
|
||||
|
||||
CFLAGS = -Wall -g -O2 `pkg-config --cflags gtk+-2.0`
|
||||
|
||||
PROG = hello-world
|
||||
|
||||
OBJS = $(PROG).o
|
||||
|
||||
all: $(OBJS)
|
||||
gcc -o $(PROG) $(OBJS) `pkg-config --libs gtk+-2.0`
|
||||
|
||||
clean:
|
||||
rm -f $(PROG) $(OBJS) *.c~ *.h~ 2>/dev/null
|
Reference in New Issue
Block a user