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
616 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" /Fp"msmqtest.pch" /YX /c
  9. LINK32=link.exe
  10. LINK32_FLAGS= mqrt.lib kernel32.lib user32.lib gdi32.lib\
  11. netapi32.lib /nologo /subsystem:console /incremental:no\
  12. /pdb:"msmqtest.pdb" /debug /machine:$(CPU) /out:"msmqtest.exe"
  13. .c{$(CPP_OBJS)}.obj:
  14. $(CPP) $(CPP_PROJ) $<
  15. #----------------------
  16. #
  17. # Build Executable
  18. #
  19. #----------------------
  20. all: msmqtest.exe
  21. msmqtest.obj: msmqtest.c
  22. msmqtest.exe : msmqtest.obj
  23. $(LINK32) $(LINK32_FLAGS) msmqtest.obj