]> git.llucax.com Git - software/bife/bife++.git/blob - translate/Makefile
Fixed a bug.
[software/bife/bife++.git] / translate / Makefile
1
2 LIBBIFE_DIR=../libbife
3
4 DEBUG=-Wall #-g3 -DDEBUG
5 CPPFLAGS=-fPIC $(DEBUG)
6 LDFLAGS=-L$(LIBBIFE_DIR) -lbife -shared
7
8 all: translate.so
9
10 translate.o: translate.h translate.cpp
11 translate_loader.o: translate_loader.cpp
12
13 TARGETS=translate.o translate_loader.o
14 translate.so: $(TARGETS)
15         $(CXX) $(DEBUG) $(LDFLAGS) -o translate.so $(TARGETS)
16
17 clean:
18         @rm -f *.o translate.so
19