mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
642 B
34 lines
642 B
#
|
|
# Create a Win32 application
|
|
#
|
|
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=MmioTest
|
|
|
|
# Define the name and type of the application
|
|
|
|
TARGETNAME=MmioTest
|
|
TARGETTYPE=PROGRAM
|
|
UMTYPE=console
|
|
|
|
# Define where APP.EXE will go.
|
|
|
|
TARGETPATH=..\obj
|
|
|
|
# Define the path to search for include files
|
|
|
|
INCLUDES=\nt\public\sdk\inc;\nt\public\sdk\inc\crt;..\..\inc
|
|
|
|
# list each C and RC source file
|
|
|
|
SOURCES=main.c \
|
|
mmiotest.c \
|
|
mmiotest.rc
|
|
|
|
# List any libraries not included by WIN32LIBS in MAKEFILE.DEF
|
|
|
|
TARGETLIBS=\nt\public\sdk\lib\*\user32.lib \
|
|
\nt\public\sdk\lib\*\gdi32.lib \
|
|
\nt\public\sdk\lib\*\winmm.lib
|
|
|