36 lines
718 B
Plaintext
36 lines
718 B
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
!ENDIF
|
|
|
|
TARGETNAME=setup
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
TARGETTYPE=PROGRAM
|
|
|
|
SOURCES=main.cpp \
|
|
main.rc
|
|
|
|
UMENTRY=wmain
|
|
UMTYPE=console
|
|
UMAPPL=main
|
|
|
|
C_DEFINES = $(C_DEFINES) -DUNICODE -D_UNICODE
|
|
|
|
LINKLIBS = $(LINKLIBS)\
|
|
$(SDK_LIB_PATH)\user32.lib\
|
|
..\lib\umode\c\sacapi\$(O)\sacapi.lib\
|
|
..\lib\umode\cpp\emsapi\$(O)\emsapi.lib
|
|
|