add mingw library names

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@590 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-03-03 16:30:53 +00:00
parent ac263c0ca6
commit ab6e52b476

View file

@ -1,9 +1,12 @@
BIN = client
LIB1 = libfoo.so
LIB2 = libsingletondll.so
#mingw names
#LIB1 = foo.dll
#LIB2 = singletondll.dll
CXXFLAGS = -Wall -Wold-style-cast -Wundef -Wsign-compare -Wconversion -Wpointer-arith -pedantic -O2
CPPFLAGS = -I../../include -DNDEBUG
LDFLAGS = -L. -L../../lib
LDFLAGS = -L../../lib
LDLIBS = -lloki
.PHONY: build clean
@ -16,7 +19,7 @@ $(LIB1): foo.cpp
$(CXX) --shared $(CXXFLAGS) $(CPPFLAGS) -o $(LIB1) foo.cpp
$(LIB2): singletondll.cpp
$(CXX) --shared $(CXXFLAGS) $(CPPFLAGS) -o $(LIB2) singletondll.cpp $(LDFLAGS) $(LDLIBS) -lfoo
$(CXX) --shared $(CXXFLAGS) $(CPPFLAGS) -o $(LIB2) singletondll.cpp -L. -lfoo
clean:
rm -f $(BIN) $(LIB1) $(LIB2)