2025-11-28 00:35:46 +09:00

55 lines
1.6 KiB
Makefile

# THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
# ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
# PARTICULAR PURPOSE.
#
# Copyright (C) 1997-2003 Microsoft Corporation. All Rights Reserved.
#
#
# Nmake macros for building Windows 32-Bit apps
!include <win32.mak>
!if ("$(TARGETOS)" == "WINNT") && ("$(CPU)" == "IA64")
!message Sorry, this is not supported on the IA64 platforms.
!else
PROJ = FaxAccountCPP
all: $(OUTDIR) $(OUTDIR)\$(PROJ).exe
!message $(OUTDIR)
$(OUTDIR) :
if not exist "$(OUTDIR)/$(NULL)" mkdir $(OUTDIR)
# Define project specific macros
PROJ_OBJS = $(OUTDIR)\FaxAccount.obj
INCLUDE = $(DXSDKROOT)\Include;$(INCLUDE)
$(PROJ_OBJS) : FaxAccount.cpp FaxAccount.h
$(cc) $(cdebug) $(cflags) /Od /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /Gm /EHsc /RTC1 /c /Wp64 /TP FaxAccount.cpp $(cvarsdll) /Fo"$(OUTDIR)\\" /Fd"$(OUTDIR)\\"
INCLUDE = $(DXSDKROOT)\Include;$(INCLUDE)
EXTRA_LIBS = $(STRMBASE) kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib
!IFDEF NODEBUG
DEBUG=
!ELSE
DEBUG=/DEBUG /PDB:$(OUTDIR)\FaxAccountCPP.pdb
!ENDIF
# Build rule for EXE
$(OUTDIR)\$(PROJ).EXE: $(BASE_OBJS) $(PROJ_OBJS)
$(link) /OUT:$(OUTDIR)\FaxAccountCPP.exe /INCREMENTAL $(PROJ_OBJS) $(DEBUG) /SUBSYSTEM:CONSOLE /MACHINE:$(CPU) $(EXTRA_LIBS)
# embedd the manifest
if exist $@.manifest mt.exe -manifest $@.manifest -outputresource:$@;1
# Rules for cleaning out old files
clean:
$(CLEANUP)
!endif