summaryrefslogtreecommitdiff
path: root/lib/Makefile.sol.mingw
blob: f9a9c7117a30c44de45e635d8f4a24ff82cef6c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC = i586-mingw32msvc-gcc
CXX = i586-mingw32msvc-g++
AR = i586-mingw32msvc-ar
RANLIB = i586-mingw32msvc-ranlib
CPPFLAGS = -I../include -DFORCE64 -O3 -mwindows -D_REENTRANT -I/usr/local/win32/include -I../../extra/regex -DHAVE_UNISTD_H
OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Main.o Output.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) ../../extra/regex/regex.o
	$(RANLIB) $(TARGET)

clean:
	rm -f *.o $(TARGET)