NETNOW.MKF 711 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #****************************************************************************
  2. #
  3. # Project : netnow.mkf
  4. #
  5. # Date :
  6. #
  7. # Last Modification : 2/16/95 - 9:27:33 AM
  8. #
  9. #****************************************************************************
  10. # define paths
  11. src = .
  12. inc = .
  13. obj = .
  14. exe = .
  15. lib = .
  16. # define compiler/assembler/linker variables
  17. c = wcl386
  18. cf = -zp4 -4s -c -s -d2 -mf -od -I$(inc) /fo$@
  19. a = \borlandc\bin\tasm
  20. af = -zi -mx
  21. # define intrinsic rules
  22. .c.obj:
  23. $(c) $(cf) $<
  24. .asm.obj:
  25. $(a) $(af) $<, $@;
  26. # define all library modules
  27. modules = \
  28. $(obj)\test.obj
  29. # reference all makes
  30. all: $(exe)\test.exe
  31. # make
  32. $(exe)\test.exe: $(modules)
  33. wlink @netnow.lnk