diff options
author | pixel <pixel> | 2002-12-23 15:28:15 +0000 |
---|---|---|
committer | pixel <pixel> | 2002-12-23 15:28:15 +0000 |
commit | 3dbdb39eb0abdd9a1aeb3744e5fe8a43e0afadc1 (patch) | |
tree | dd1c5b632ba05b3388d3e0ab1731e14021386af9 /lib/Makefile.sol.mingw | |
parent | c1271b904b730dbf427366d9aa6388037931ba84 (diff) |
pre-commit patch
Diffstat (limited to 'lib/Makefile.sol.mingw')
-rw-r--r-- | lib/Makefile.sol.mingw | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/Makefile.sol.mingw b/lib/Makefile.sol.mingw new file mode 100644 index 0000000..8f15e9e --- /dev/null +++ b/lib/Makefile.sol.mingw @@ -0,0 +1,14 @@ +CC = i586-mingw32msvc-gcc +CXX = i586-mingw32msvc-g++ +LD = i586-mingw32msvc-ld +CPPFLAGS = -I../include -DFORCE64 +OBJECTS = Exceptions.o Handle.o Image.o Input.o Main.o Output.o String.o \ + checkargs.o datecalc.o fileutils.o generic.o + +all: Baltisot-sol.dll + +Baltisot-sol.dll: $(OBJECTS) + $(CXX) -o Baltisot-sol.dll -shared $(OBJECTS) -lz + +clean: + rm -f *.o |