summaryrefslogtreecommitdiff
path: root/tests/modules/Makefile.W32
blob: 6dfa78bba8fa922f6a82f2001a75f4a4d7e98326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
TOPDIR = ..\..

SUBDIRS = testmod testmod2

!INCLUDE $(TOPDIR)\makefiles\nmake\platform.mk

INCLUDE_CXXFLAGS = \
	/D_WIN32_WINNT=0x504

INCLUDE_DIRS = \
	/I. \
	/I$(TOPDIR)\src

INCLUDE_LDFLAGS = \

INCLUDE_LIBS = \
	$(TOPDIR)\src\crawler.lib

TEST_CPP_BINS = \
	test1.exe \
	test2.exe

OBJS =

!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk

test1.exe: test1.obj
test2.exe: test2.obj

local_all: test2.exe

local_clean:
	@-erase -f *.RES *.DIFF *.ERR 2>NUL

local_distclean:

local_test:
	@-exec_test test1 "Module loader"
	@-exec_test test2 "Module loader with singleton"