41 lines
779 B
Plaintext
41 lines
779 B
Plaintext
!include ..\..\win95upg.mk
|
|
|
|
!include $(WIN95UPG_ROOT)\w95upgnt\w95upgnt.mk
|
|
|
|
# component
|
|
MINORCOMP=nttool
|
|
|
|
# target
|
|
TARGETNAME=initool
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
# x86-specific sources
|
|
I386_SOURCES=\
|
|
initool.c \
|
|
initool.rc
|
|
|
|
INCLUDES=$(WIN95UPG_ROOT)\w95upgnt\ntui;$(WIN95UPG_ROOT)\w95upgnt\dll;$(INCLUDES)
|
|
|
|
# pre-compiled header options (x86-only)
|
|
# NOTE: This is efficient only when there are two or more source files
|
|
!if $(386)
|
|
PRECOMPILED_INCLUDE=pch.h
|
|
PRECOMPILED_PCH=pch.pch
|
|
PRECOMPILED_OBJ=pch.obj
|
|
!endif
|
|
|
|
# link libraries
|
|
!include $(WIN95UPG_ROOT)\w95upgnt\libs.mk
|
|
|
|
# app settings
|
|
UMTYPE=console
|
|
UMENTRY=wmain
|
|
|
|
|
|
TARGETLIBS=$(TARGETLIBS) \
|
|
$(BASE_LIB_PATH)\sputilsu.lib \
|
|
|
|
INCLUDES=$(INCLUDES); \
|
|
$(BASE_INC_PATH)
|