# # The MAJORCOMP and MINORCOMP variables are defined # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in # cross compiling to provide unique filenames in a flat namespace. # MAJORCOMP=SetupIE MINORCOMP=W95INF32 # # The TARGETNAME variable is defined by the developer. It is the name of # the target (component) that is being built by this makefile. It # should NOT include any path or file extension information. # TARGETNAME=w95inf32 # # The TARGETPATH and TARGETTYPE variables are defined by the developer. # The first specifies where the target is to be build. The second specifies # the type of target (either PROGRAM, DYNLINK, LIBRARY, UMAPPL_NOLIB or # BOOTPGM). UMAPPL_NOLIB is used when you're only building user-mode # apps and don't need to build a library. # TARGETPATH=obj TARGETTYPE=DYNLINK UMTYPE=windows DLLBASE=0x400000 DLLENTRY=_DllMainCRTStartup DLLDEF=w95inf32.def USE_LIBCMT=1 # LINKER_FLAGS=-machine:$(TARGET_DIRECTORY:i386=ix86) USENOLIBS=1 # # The TARGETLIBS specifies additional libraries to link with you target # image. Each library path specification should contain an asterisk (*) # where the machine specific subdirectory name should go. # TARGETLIBS=\ $(SDK_LIB_PATH)\shell32.lib \ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\gdi32.lib \ $(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ $(SDK_LIB_PATH)\mpr.lib # # The INCLUDES variable specifies any include paths that are specific to # this source directory. Separate multiple directory paths with single # semicolons. Relative path specifications are okay. # INCLUDES= \ ..\cabpack;\ ..\common # # The SOURCES variable is defined by the developer. It is a list of all the # source files for this component. Each source file should be on a separate # line using the line continuation character. This will minimize merge # conflicts if two developers adding source files to the same component. # SOURCES=\ w95inf32.rc \ w95inf32.c # # Next specify options for the compiler. # C_DEFINES=\ -DNASHVILLE