diff --git a/test/SingletonDll/Makefile b/test/SingletonDll/Makefile index 103f370..983e760 100755 --- a/test/SingletonDll/Makefile +++ b/test/SingletonDll/Makefile @@ -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)