MAKEFILE 875 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. LIBDIR = ..\main
  10. #
  11. CCFLAGS = /dNETWORK /dRELEASE /dNDEBUG
  12. # What to install, and where to install it
  13. INSTALL_TARGS = fix.lib fix.h fix.inc
  14. # What to clean
  15. CLEAN_TARGS = $(OBJDIR)\*.obj
  16. # What libs to make
  17. LIBS = fix
  18. # What test programs to make
  19. TEST_PROGS = fixtest
  20. # What object files for the lib
  21. FIX_OBJS = fix.obj
  22. # What object files and libs for the test programs
  23. FIXTEST_SRCS = fixtest.c
  24. FIXTEST_LIBS = fix.lib io.lib
  25. fix.lib: $(FIX_OBJS)
  26. wlib fix.lib $(FIX_OBJS)
  27. copy *.lib $(LIBDIR)
  28. asingen.obj: math.h stdio.h
  29. fix.obj: fix.inc fix.asm
  30. masm fix.asm
  31. fixtest.obj: conio.h fix.h graph.h stdio.h stdlib.h types.h
  32. singen.obj: math.h
  33. test.obj: psmacros.inc