]> git.llucax.com Git - software/bife/bife++.git/blob - libbife/Makefile
- Normalized Fallback constructor to be the same of Widget (or Container).
[software/bife/bife++.git] / libbife / Makefile
1
2 DEBUG=-Wall #-g3 -DDEBUG
3 CPPFLAGS=-fPIC $(DEBUG)
4 LDFLAGS=-shared
5
6 all: libbife.so
7
8 hit.o: hash.h hit.h hit.cpp
9 ghit.o: hit.o ghit.h ghit.cpp
10 chit.o: ghit.o chit.h chit.cpp
11
12 widget.o: hit.o widget.h widget.cpp
13 string.o: widget.o string.h string.cpp
14 container.o: widget.o container.h container.cpp
15 fallback.o: container.o fallback.h fallback.cpp
16
17 TAGETS=hit.o ghit.o chit.o widget.o string.o container.o fallback.o
18 libbife.so: $(TAGETS)
19         $(CXX) $(DEBUG) $(LDFLAGS) -o libbife.so $(TAGETS)
20
21 clean:
22         @rm -f *.o libbife.so
23