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.

35 lines
654 B

  1. #---------------------
  2. #
  3. # Macros
  4. #
  5. #---------------------
  6. CPP=cl.exe
  7. CPP_PROJ=/nologo /ML /W3 /Gm /GX /Zi /O2 /D "WIN32" /D\
  8. "NDEBUG" /D "_CONSOLE" /YX /c
  9. LINK32=link.exe
  10. LINK32_FLAGS= mqoa.lib kernel32.lib user32.lib gdi32.lib ole32.lib oleaut32.lib\
  11. /nologo /subsystem:console /incremental:no\
  12. /pdb:"mqtestoa.pdb" /debug /machine:$(CPU) /out:"mqtestoa.exe"
  13. .cpp{$(CPP_OBJS)}.obj:
  14. $(CPP) $(CPP_PROJ) $<
  15. #----------------------
  16. #
  17. # Build Executable
  18. #
  19. #----------------------
  20. all: mqtestoa.exe
  21. mqtestoa.obj: mqtestoa.cpp
  22. guids.obj: guids.cpp
  23. mqtestoa.exe : mqtestoa.obj guids.obj
  24. $(LINK32) $(LINK32_FLAGS) mqtestoa.obj guids.obj