]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/makefile
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / makefile
1 CC=g++ -fPIC -c
2 SHA = g++
3 SHAOPTS = -shared -Wl,-soname,libdataboard.so
4 INC=-I$(ANTDIR)/include/ -I.
5 LIB=-L$(ANTDIR)/lib/ -lantlr3c
6
7 all:
8         $(CC) $(INC) $(LIB) *.cpp *.c
9         $(SHA) $(SHAOPTS) -o lib/libdataboard.so *.o
10         
11 clean:
12         rm -rf *.o lib/libdataboard.a lib/*.so*