view finch/libgnt/test/Makefile @ 24263:577f9df685c2

merge of '4f7bf56fa49ba320a72f34b0df3e12c95b6bd84d' and '5b118704741ad92794d9a27021f3862681c7b048'
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 19 Oct 2008 02:33:10 +0000
parents 406aa3be6b32
children
line wrap: on
line source

CC=gcc
CFLAGS=`pkg-config --cflags gobject-2.0 gmodule-2.0` -g -I../ -DSTANDALONE -I/usr/include/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)