home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / meval113.zip / SRC / MAKEFILE.AMA < prev    next >
Text File  |  1993-04-09  |  663b  |  29 lines

  1. #
  2. # Amiga Manx 5.x Makefile for Eval.  Uses Amiga IEEE libraries.
  3. #
  4. # Since Eval does not need a lot of speed, the IEEE libraries
  5. # (which auto-detect the 68881/2 if available but are slower than
  6. # native 68881/2 code) are sufficient, and they keep the code smaller.
  7. #
  8. CC=cc
  9. CCFLAGS=-fa
  10. LN=ln
  11. LNFLAGS=+q
  12. LIBC=-lc
  13. LIBM=-lma
  14. EXE=
  15. OBJ=.o
  16. HEADER=eval.h
  17. OBJFILES=eval$(OBJ) funcs$(OBJ) parse$(OBJ) estack$(OBJ) base$(OBJ) \
  18.          bitwise$(OBJ) etable$(OBJ) help$(OBJ) emath$(OBJ)
  19.  
  20. .c$(OBJ):
  21.     $(CC) $(CCFLAGS) $*.c
  22.  
  23. $(OBJFILES):  $(HEADER)
  24.  
  25. eval$(EXE):  $(OBJFILES)
  26.     $(LN) $(LNFLAGS) $(OBJFILES) $(LIBM) $(LIBC)
  27.  
  28. all:    eval$(EXE)
  29.