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.

23 lines
466 B

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=BOTH
  3. APPVER=4.0
  4. Proj=tint
  5. all:tint.exe
  6. !include <inetsdk.mak>
  7. globals.obj: globals.cxx
  8. $(cc) $(cflags) $(cvars) $(cdebug) globals.cxx
  9. main.obj: main.cxx
  10. $(cc) $(cflags) $(cvars) $(cdebug) main.cxx
  11. test.obj: test.cxx
  12. $(cc) $(cflags) $(cvars) $(cdebug) test.cxx
  13. tint.exe: globals.obj main.obj test.obj
  14. $(link) $(lflags) $(ldebug) -out:tint.exe globals.obj main.obj test.obj $(olelibs)