Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: define THG_DEBUG for Makefile.nmake

Changeset 8471c7c3d8c1

Parent e981eceda49b

by Adrian Buehlmann

Changes to one file · Browse files at 8471c7c3d8c1 Showing diff from parent e981eceda49b Diff from another changeset...

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
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
   OBJECTS_DIRSTATE = TortoiseUtils.obj \   Direntry.obj \   Directory.obj \   Winstat.obj    OBJECTS_THGSGELL = $(OBJECTS_DIRSTATE) \   ContextMenu.obj \   IconOverlay.obj \   ShellExt.obj \   ShellUtils2.obj \   StringUtils.obj \   dirstate.obj \   Winstat64.obj \   Dirstatecache.obj \   DirectoryStatus.obj \   Thgstatus.obj \   QueryDirstate.obj    LIBS = User32.lib Ole32.lib Shlwapi.lib Shell32.lib Advapi32.lib  DEFFILE = ShellExt.def     -CPPFLAGS = /nologo /Ox /W2 /EHsc /MD /DAPPMAIN +CPPFLAGS = /nologo /Ox /W2 /EHsc /MD /DAPPMAIN /DTHG_DEBUG  BASE_LDFLAGS = /nologo /INCREMENTAL:NO /MANIFEST $(LIBS)  LDFLAGS_THGSHELL = $(BASE_LDFLAGS) /DLL /DEF:$(DEFFILE)  LDFLAGS_DIRSTATE = $(BASE_LDFLAGS) /SUBSYSTEM:CONSOLE      all: THgShell.dll dirstate.exe    clean:   del *.obj *.dll *.exe *.lib *.exp *.manifest    THgShell.dll: $(OBJECTS_THGSGELL)   link /OUT:$@ $(LDFLAGS_THGSHELL) $**   mt -nologo -manifest $@.manifest -outputresource:"$@;#2"    dirstate.exe: dirstate.obj $(OBJECTS_DIRSTATE)   link /OUT:$@ $(LDFLAGS_DIRSTATE) $**   mt -nologo -manifest $@.manifest -outputresource:"$@;#1"