chergert / custom-gtk-widgets

Collection of custom gtk widgets I've created

This URL has Read+Write access

nzjrs (author)
Sat Aug 29 18:13:29 -0700 2009
chergert (committer)
Mon Aug 31 16:22:01 -0700 2009
custom-gtk-widgets / bdbliststore / Makefile
100644 11 lines (7 sloc) 0.197 kb
1
2
3
4
5
6
7
8
9
10
11
all: bdbliststore
 
PKGS = gtk+-2.0
FILES = main.c bdb-list-store.c
 
bdbliststore: $(FILES)
$(CC) -g -o $@ -Wall $(FILES) `pkg-config --libs --cflags $(PKGS)` -ldb-4.6
 
clean:
rm -rf bdbliststore