]> git.llucax.com Git - software/bife/bife++.git/blob - Makefile
- Normalized Fallback constructor to be the same of Widget (or Container).
[software/bife/bife++.git] / Makefile
1
2 LIBBIFE_DIR=libbife
3
4 DEBUG=-Wall -g3 -DDEBUG
5 CPPFLAGS=-I/usr/include/libxml++-1.0 -I/usr/include/libxml2 $(DEBUG)
6 LDFLAGS=-L$(LIBBIFE_DIR) -lxml++-0.1 -ldl -lbife
7
8 all: parser_test
9
10 # Parser example.
11 parser.o: parser.h parser.cpp
12 parser_test.o: parser_test.cpp
13
14 parser_test: parser.o parser_test.o
15
16 clean:
17         @rm -f *.o parser_test
18