home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / fix / makefile < prev   
Makefile  |  1998-06-08  |  875b  |  47 lines

  1. #
  2. # $Source: f:/miner/source/fix/rcs/makefile $
  3. # $Revision: 1.5 $
  4. # $Author: matt $
  5. # $Date: 1994/11/27 23:21:18 $
  6. #
  7. # Makefile for fixed-point library
  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 = fix.lib fix.h fix.inc
  17.  
  18. # What to clean
  19. CLEAN_TARGS = $(OBJDIR)\*.obj
  20.  
  21. # What libs to make
  22. LIBS = fix
  23.  
  24. # What test programs to make
  25. TEST_PROGS = fixtest
  26.  
  27. # What object files for the lib
  28. FIX_OBJS = fix.obj
  29.  
  30. # What object files and libs for the test programs
  31. FIXTEST_SRCS = fixtest.c
  32. FIXTEST_LIBS = fix.lib io.lib
  33.  
  34. fix.lib: $(FIX_OBJS)
  35.     wlib fix.lib $(FIX_OBJS)
  36.     copy *.lib $(LIBDIR)
  37. asingen.obj: math.h stdio.h
  38.  
  39. fix.obj: fix.inc fix.asm
  40.     masm fix.asm
  41.  
  42. fixtest.obj: conio.h fix.h graph.h stdio.h stdlib.h types.h
  43.  
  44. singen.obj: math.h
  45.  
  46. test.obj: psmacros.inc
  47.