Mercurial > pidgin.yaz
view finch/libgnt/test/Makefile @ 15847:a2ab257116ce
File selector dialog. Still in an experimental state. When properly complete, this can be used for file/folder-request etc.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Tue, 20 Mar 2007 01:16:35 +0000 |
parents | 0e3a8505ebbe |
children | 5f204f55af09 |
line wrap: on
line source
CC=gcc CFLAGS=`pkg-config --cflags gobject-2.0 gmodule-2.0` -g -I../ -DSTANDALONE LDFLAGS=`pkg-config --libs gobject-2.0 gmodule-2.0 gnt` -pg EXAMPLES=combo focus tv multiwin keys menu 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)