aboutsummaryrefslogtreecommitdiffhomepage
path: root/ext/detours/samples/commem/Makefile
blob: 70cdd59a889cdd772a3d87eb184c06959dbd2f49 (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
##############################################################################
##
##  Makefile for Detours Test Programs.
##
##  Microsoft Research Detours Package
##
##  Copyright (c) Microsoft Corporation.  All rights reserved.
##

!include ..\common.mak

LIBS=$(LIBS) kernel32.lib

all: dirs \
    $(BIND)\commem.exe \
!IF $(DETOURS_SOURCE_BROWSING)==1
    $(OBJD)\commem.bsc
!ENDIF

clean:
    -del *~ *.obj *.sbr 2> nul
    -del $(BIND)\commem.* 2> nul
    -rmdir /q /s $(OBJD) 2>nul

realclean: clean
    -rmdir /q /s $(OBJDS) 2>nul

dirs:
    @if not exist $(BIND) mkdir $(BIND) && echo.   Created $(BIND)
    @if not exist $(OBJD) mkdir $(OBJD) && echo.   Created $(OBJD)

$(BIND)\commem.obj : commem.cpp

$(BIND)\commem.exe : $(OBJD)\commem.obj $(DEPS)
    cl $(CFLAGS) /Fe$@ /Fd$(@R).pdb $(OBJD)\commem.obj \
        /link $(LINKFLAGS) $(LIBS) ole32.lib /subsystem:console

$(OBJD)\commem.bsc : $(OBJD)\commem.obj
    bscmake /v /n /o $@ $(OBJD)\commem.sbr

##############################################################################

test: $(BIND)\commem.exe
    @echo.
    $(BIND)\commem.exe
    @echo.

################################################################# End of File.