blob: dd89318c3e5699001d39e3e81ecec65ad1ea12d3 (
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
|
# Build the lexers test with Microsoft Visual C++ using nmake
# Tested with Visual C++ 2019
DEL = del /q
EXE = TestLexers.exe
INCLUDEDIRS = -I ../../include -I ../src
!IFDEF LEXILLA_STATIC
STATIC_FLAG = -D LEXILLA_STATIC
LIBS = ../../bin/liblexilla.lib
!ENDIF
!IFDEF DEBUG
DEBUG_OPTIONS = -Od -MTd -DDEBUG $(STATIC_FLAG)
!ELSE
DEBUG_OPTIONS=-O1 -MT -DNDEBUG $(STATIC_FLAG) -GL
!ENDIF
CXXFLAGS = /EHsc /std:c++latest $(DEBUG_OPTIONS) $(INCLUDEDIRS)
OBJS = TestLexers.obj TestDocument.obj LexillaAccess.obj
all: $(EXE)
test: $(EXE)
$(EXE)
clean:
$(DEL) *.o *.obj *.exe
$(EXE): $(OBJS) $(LIBS)
$(CXX) $(CXXFLAGS) $(LIBS) /Fe$@ $**
.cxx.obj::
$(CXX) $(CXXFLAGS) -c $<
TestLexers.obj: $*.cxx TestDocument.h LexillaAccess.h
TestDocument.obj: $*.cxx $*.h
LexillaAccess.obj: $*.cxx $*.h
|