summaryrefslogtreecommitdiff
path: root/tests/utils/Makefile.W32
blob: ec6f9e709bcdb2a8ce659089c2850e3a3736239d (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
40
41
42
TOPDIR = ..\..

SUBDIRS =

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

INCLUDE_CXXFLAGS = \
	/D_WIN32_WINNT=0x504
	
INCLUDE_DIRS = \
	/I. \
	/I$(TOPDIR)\src \
	/I$(TOPDIR)\include\util

INCLUDE_LDFLAGS = \

INCLUDE_LIBS = \

TEST_CPP_BINS = \
	test1.exe \
	test2.exe \
	test3.exe

OBJS =

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

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

local_all:

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

local_distclean:

local_test:
	@-exec_test test1 "TypeList and TypeTraits"
	@-exec_test test2 "TypeInfo C++ demangle"
	@-exec_test test3 "Singleton"