69 lines
993 B
Plaintext
69 lines
993 B
Plaintext
!ifndef ROOT
|
|
ROOT=$(MAKEDIR:\setup\pgmgrp=)
|
|
!endif
|
|
!ifndef DEVROOT
|
|
DEVROOT=$(ROOT)\dev
|
|
!endif
|
|
|
|
|
|
!include $(DEVROOT)\common.inc
|
|
|
|
MAJORCOMP=setup
|
|
MINORCOMP=nmpgmgrp
|
|
|
|
TARGETNAME=nmpgmgrp
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
TARGETTYPE=PROGRAM
|
|
|
|
386_STDCALL = 1
|
|
|
|
!if "$(FREEBUILD)" == "1" && $(386)
|
|
# Don't use the C run-time library
|
|
!undef USE_MSVCRT
|
|
!undef USE_LIBCMT
|
|
USE_SYSDLL = 1
|
|
!endif
|
|
|
|
# Build Unicode version
|
|
#C_DEFINES = /DUNICODE
|
|
|
|
LINKLIBS=\
|
|
$(ROOT)\nmutil\nmutila\$(_OBJ_DIR)\*\nmutila.lib
|
|
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib
|
|
|
|
|
|
SOURCES=\
|
|
pgmgrp.cpp \
|
|
pgmgrp.rc
|
|
|
|
UMENTRYABS=main
|
|
|
|
#
|
|
# Precompiled specs
|
|
#
|
|
|
|
PRECOMPILED_INCLUDE = precomp.h
|
|
PRECOMPILED_PCH = precomp.pch
|
|
PRECOMPILED_OBJ = precomp.obj
|
|
PRECOMPILED_CXX = 1
|
|
|
|
|
|
CONDITIONAL_INCLUDES = \
|
|
macocidl.h \
|
|
macwin32.h \
|
|
rpcerr.h \
|
|
rpcmac.h \
|
|
winwlm.h \
|
|
macname1.h \
|
|
macname2.h \
|
|
macpub.h \
|
|
macapi.h
|
|
|
|
|
|
|
|
|