view finch/libgnt/test/Makefile @ 21278:ebb46dea479a

Buttons were leaking all this time! It's a good thing there ain't too many of them in finch!
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 31 Oct 2007 18:13:53 +0000
parents acf284962b40
children 406aa3be6b32
line wrap: on
line source

CC=gcc
CFLAGS=`pkg-config --cflags gobject-2.0 gmodule-2.0` -g -I../ -DSTANDALONE -I/usr/inclue/ncursesw/
LDFLAGS=`pkg-config --libs gobject-2.0 gmodule-2.0 gnt` -pg

EXAMPLES=combo focus tv multiwin keys menu parse

all:
	make examples

clean:
	rm -f $(EXAMPLES) *.so wm

WM: wm
	for i in $(EXAMPLES); do gcc -shared $(CFLAGS) -USTANDALONE $(LDFLAGS) $${i}.c -o $${i}.so ; done

examples: $(EXAMPLES)