home *** CD-ROM | disk | FTP | other *** search
/ Graphics 16,000 / graphics-16000.iso / msdos / animutil / pvquan / anim / makedos < prev    next >
Text File  |  1992-11-30  |  830b  |  38 lines

  1. # Turbo-Make / UNIX Makefile for ANIMDAT by F van der Hulst
  2.  
  3. # Turbo C stuff
  4.  
  5. TARGET = ..\bin\animfli.exe
  6. CC     =d:\tc\bin\tcc
  7. OBJ    =obj
  8. LINK   = d:\tc\bin\tlink
  9. OBJS = animfli.$(OBJ)
  10. CFLAGS =-mc -1 -a -K -G -O -Z -r -c -k- -N- -v- -C -Id:\tc\include -I..\flilib -w
  11. LFLAGS = /c d:\tc\lib\c0c $(OBJS), $(TARGET), NUL, @link.cmd
  12.  
  13.  
  14. # Following are for SCO Unix:
  15. # CC     = cc
  16. # LINK   = cc
  17. # OBJ    = o
  18. # CFLAGS = -c -M3 -J -Ox
  19. # LFLAGS = -o ../bin/octree -Ox -lm
  20.  
  21. # Following are for GNU:
  22. # CC     = gcc
  23. # LINK   = gcc
  24. # OBJ    = o
  25. # CFLAGS = -ansi -c -O -I/usr/lib/gcc-include -Dsparc
  26. # LFLAGS = -o $(TARGET) -lm
  27.  
  28. # Implicit rules for making an object file from a .C file...
  29. #
  30. .c.$(OBJ) :
  31.     $(CC) $(CFLAGS) $*.c
  32.  
  33. $(TARGET) : $(OBJS)
  34.         $(LINK) $(LFLAGS)
  35.  
  36. animfli.$(OBJ):      animfli.c
  37.  
  38.