Source code of Windows XP (NT5)
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
589 B

  1. #
  2. # Create a Win32 application
  3. #
  4. MAJORCOMP=windows
  5. MINORCOMP=MmioTest
  6. # Define the name and type of the application
  7. TARGETNAME=MmioTest
  8. TARGETTYPE=PROGRAM
  9. UMTYPE=console
  10. # Define where APP.EXE will go.
  11. TARGETPATH=..\obj
  12. # Define the path to search for include files
  13. INCLUDES=..\..\inc
  14. # list each C and RC source file
  15. SOURCES=main.c \
  16. mmiotest.c \
  17. mmiotest.rc
  18. # List any libraries not included by WIN32LIBS in MAKEFILE.DEF
  19. TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
  20. $(SDK_LIB_PATH)\gdi32.lib \
  21. $(SDK_LIB_PATH)\winmm.lib