forked from Shmuma/sqlite3-mt4-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (15 loc) · 622 Bytes
/
Makefile
File metadata and controls
23 lines (15 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all: sqlite3_wrapper.dll test.ex4 test2.ex4
CCOPTS=-I/usr/i586-mingw32msvc/include -O2
LDOPTS=-L/usr/i586-mingw32msvc/lib -shared -Wl,--add-stdcall-alias
sqlite3_wrapper.dll: sqlite3_wrapper.o sqlite3.o
i586-mingw32msvc-gcc $(LDOPTS) -o sqlite3_wrapper.dll sqlite3_wrapper.o sqlite3.o -lshlwapi -lshell32
sqlite3.o: sqlite3.c sqlite3.h
i586-mingw32msvc-gcc $(CCOPTS) -c -o sqlite3.o sqlite3.c
sqlite3_wrapper.o: sqlite3_wrapper.c
i586-mingw32msvc-gcc $(CCOPTS) -c -o sqlite3_wrapper.o sqlite3_wrapper.c
clean:
rm -f test.ex4 test2.ex4
test.ex4: test.mq4
ml4.sh test.mq4
test2.ex4: test2.mq4
ml4.sh test2.mq4