home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / div / makefile < prev    next >
Makefile  |  1998-06-08  |  746b  |  41 lines

  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.  
  10. LIBDIR = ..\main
  11. #
  12.  
  13. CCFLAGS = /dNETWORK /dRELEASE /dNDEBUG
  14.  
  15. # What to install, and where to install it
  16. INSTALL_TARGS = div0.lib div0.h div0.inc
  17.  
  18. # What to clean
  19. CLEAN_TARGS = $(OBJDIR)\*.obj
  20.  
  21. # What libs to make
  22. LIBS = div0
  23.  
  24. # What test programs to make
  25. TEST_PROGS = testd
  26.  
  27. # What object files for the lib
  28. DIV0_OBJS =  div0.obj
  29.  
  30. # What object files and libs for the test programs
  31. TESTD_SRCS = testd.c testda.asm
  32. TESTD_LIBS = div0.lib
  33.  
  34. div0.lib: $(DIV0_OBJS)
  35.     wlib div0.lib $(DIV0_OBJS)
  36.     copy *.lib $(LIBDIR)
  37. div0.obj: div0.asm
  38.     masm div0.asm
  39.  
  40. testd.obj: 
  41.