#
#   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

