MAKEFILE 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # $Source: f:/miner/source/div/rcs/makefile $
  3. # $Revision: 1.3 $
  4. # $Author: matt $
  5. # $Date: 1994/11/21 11:34:49 $
  6. #
  7. # Makefile for bios functions
  8. #
  9. LIBDIR = ..\main
  10. #
  11. CCFLAGS = /dNETWORK /dRELEASE /dNDEBUG
  12. # What to install, and where to install it
  13. INSTALL_TARGS = div0.lib div0.h div0.inc
  14. # What to clean
  15. CLEAN_TARGS = $(OBJDIR)\*.obj
  16. # What libs to make
  17. LIBS = div0
  18. # What test programs to make
  19. TEST_PROGS = testd
  20. # What object files for the lib
  21. DIV0_OBJS = div0.obj
  22. # What object files and libs for the test programs
  23. TESTD_SRCS = testd.c testda.asm
  24. TESTD_LIBS = div0.lib
  25. div0.lib: $(DIV0_OBJS)
  26. wlib div0.lib $(DIV0_OBJS)
  27. copy *.lib $(LIBDIR)
  28. div0.obj: div0.asm
  29. masm div0.asm
  30. testd.obj: