Leaked source code of windows server 2003
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.

20 lines
618 B

  1. # Sample sources fine for multiple console apps that depend on the same lib.
  2. # The lib hwlib.lib is compiled from the hwcommon.c source. This lib is than used
  3. # to build hworld.c, hglobe.c, and myworld.c into the apps hworld.exe hglobe.exe
  4. # and myworld.exe
  5. # It uses the standard MSVCRT libraries.
  6. # Note that the $(O) macro is used to reference where the lib is build (which on an
  7. # x86 machine would resolve to obj\i386).
  8. #
  9. TARGETNAME=hwlib
  10. TARGETPATH=obj
  11. TARGETTYPE=LIBRARY
  12. INCLUDES=.
  13. SOURCES=hwcommon.c
  14. UMTYPE=console
  15. UMTEST=
  16. UMLIBS=$(O)\hwlib.lib
  17. UMAPPL=hworld*hglobe*myworld
  18. USE_MSVCRT=1