aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/sample/Makefile.msvc
blob: 35ce2f9b171a52a9e2c2a83ecfaf6c5fb5335ab7 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# Makefile for Microsoft Visual C++
# Make sure cl.exe is in the PATH (run vcvars.bat) or change CXXC below
#

# For the Win32 GUI
WIN32_FLAGS = user32.lib

# For the Qt GUI
# QTDIR = c:\qt
QT_FLAGS = -I$(QTDIR)/include $(QTDIR)/lib/qt.lib

TARGETS = error_printer.exe stdio_printer.exe yes_no_runner.exe file_printer.exe aborter.exe only.exe
GUI_TARGETS = win32_runner.exe qt_runner.exe
TESTS = *.h
GUI_TESTS = gui/GreenYellowRed.h $(TESTS)
TESTGEN = perl -w ../cxxtestgen.pl
CXXC = cl.exe -GX -W3 -WX -I. -I..

all: $(TARGETS)

clean:
	del *~ *.o *.obj 
	del $(TARGETS) 
	del $(GUI_TARGETS)
	del tests.cpp error_printer.cpp stdio_printer.cpp file_printer.cpp aborter.cpp only.cpp
	del win32_runner.cpp qt_runner.cpp

distclean: clean
	del Makefile

run: error_printer.exe
	error_printer.exe

run_win32: win32_runner.exe
	win32_runner.exe

run_qt: qt_runner.exe
	qt_runner.exe

error_printer.cpp: $(TESTS)
	$(TESTGEN) -o error_printer.cpp --error-printer $(TESTS)

stdio_printer.cpp: $(TESTS)
	$(TESTGEN) -o stdio_printer.cpp --runner=StdioPrinter $(TESTS)

file_printer.cpp: file_printer.tpl $(TESTS)
	$(TESTGEN) -o file_printer.cpp --template=file_printer.tpl $(TESTS)

aborter.cpp: aborter.tpl $(TESTS)
	$(TESTGEN) -o aborter.cpp --template=aborter.tpl $(TESTS)

only.cpp: only.tpl $(TESTS)
	$(TESTGEN) -o only.cpp --template=only.tpl $(TESTS)

tests.cpp: $(TESTS)
	$(TESTGEN) -o tests.cpp $(TESTS)

win32_runner.cpp: $(GUI_TESTS)
	$(TESTGEN) -o win32_runner.cpp --gui=Win32Gui $(GUI_TESTS)

qt_runner.cpp: $(GUI_TESTS)
	$(TESTGEN) -o qt_runner.cpp --gui=QtGui $(GUI_TESTS)

error_printer.exe: error_printer.cpp
	$(CXXC) -o error_printer.exe error_printer.cpp

stdio_printer.exe: stdio_printer.cpp
	$(CXXC) -o stdio_printer.exe stdio_printer.cpp

file_printer.exe: file_printer.cpp
	$(CXXC) -o file_printer.exe file_printer.cpp

only.exe: only.cpp
	$(CXXC) -o only.exe only.cpp

aborter.exe: aborter.cpp
	$(CXXC) -o aborter.exe aborter.cpp

yes_no_runner.exe: yes_no_runner.cpp tests.cpp
	$(CXXC) -o yes_no_runner.exe yes_no_runner.cpp tests.cpp

win32_runner.exe: win32_runner.cpp
	$(CXXC) -o win32_runner.exe win32_runner.cpp $(WIN32_FLAGS)

qt_runner.exe: qt_runner.cpp
	$(CXXC) -o qt_runner.exe qt_runner.cpp $(QT_FLAGS)

#
# Local Variables:
# compile-command: "nmake -fMakefile.msvc"
# End:
#