summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2003-01-24 08:16:05 +0000
committerpixel <pixel>2003-01-24 08:16:05 +0000
commitdebc9f5e2933494e946c86f8575cb130472dbc04 (patch)
tree9ad5defc2c5d2bc79d4863b43ff96ce9d461988b /lib
parent378e3a022e3ffc637716c42f331875843786c483 (diff)
Fixed mingw support
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.sol.mingw6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile.sol.mingw b/lib/Makefile.sol.mingw
index eedd5b9..8a1366d 100644
--- a/lib/Makefile.sol.mingw
+++ b/lib/Makefile.sol.mingw
@@ -2,15 +2,15 @@ CC = i586-mingw32msvc-gcc
CXX = i586-mingw32msvc-g++
AR = i586-mingw32msvc-ar
RANLIB = i586-mingw32msvc-ranlib
-CPPFLAGS = -I../include -DFORCE64 -I/usr/local/win32/include
+CPPFLAGS = -I../include -DFORCE64 -I/usr/local/win32/include -I../../extra/regex
OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Main.o Output.o \
- String.o checkargs.o datecalc.o fileutils.o generic.o
+ Regex.o String.o checkargs.o datecalc.o fileutils.o generic.o
TARGET = Baltisot-sol.a
all: $(TARGET)
$(TARGET): $(OBJECTS)
- $(AR) r $(TARGET) $(OBJECTS)
+ $(AR) r $(TARGET) $(OBJECTS) ../../extra/regex/regex.o
$(RANLIB) $(TARGET)
clean: