home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / TGAUTL.ZIP / MAKEFILE < prev    next >
Text File  |  1990-03-26  |  1KB  |  56 lines

  1. #
  2. #    Copyright (c) 1989, 1990
  3. #    Truevision Inc.
  4. #    All Rights Reserved
  5. #
  6.  
  7. #
  8. # MAKEFILE
  9. # Makefile for TGADUMP, TGAEDIT and TGAPACK
  10. #
  11.  
  12. ########################################################################
  13.  
  14. #
  15. # Inference Rules
  16. #
  17.  
  18. .c.exe:    
  19.     $(CL) $*.c $(LINK_FLAGS) ;
  20.  
  21. #
  22. # Macro Definitions
  23. #
  24.  
  25. MODEL=L
  26.  
  27. SRC=.
  28. INC=.
  29.  
  30.  
  31. LINK_FLAGS    = /link /NOI /E
  32. #LINK_FLAGS    = /link /NOI /CO
  33. CFLAGS        = -A$(MODEL) -I$(INC) -Otln
  34. #CFLAGS        = -A$(MODEL) -I$(INC) -Zi -Od
  35. CL            = cl $(CFLAGS) -W3
  36.  
  37.  
  38.  
  39. # VStamp is a STAGE based postage stamp display program for the ATVista.
  40. # To rebuild it requires the Truevision STAGE Toolkit
  41. vstamp.exe: vstamp.c
  42.     $(CL) /IG:\NSTAGE $*.c $(LINK_FLAGS) G:\NSTAGE\STAGE.LIB ;
  43.  
  44. # TStamp is a TARGA Tools based postage stamp display program for the TARGA.
  45. # To rebuild it requires the Truevision TARGA Toolkit
  46. tstamp.exe: tstamp.c
  47.     $(CL) /IE:\TARGA\LIB $*.c $(LINK_FLAGS) E:\TARGA\LIB\LTARGA.LIB ;
  48.  
  49. tgadump.exe: tgadump.c
  50.  
  51. tgaedit.exe: tgaedit.c
  52.     $(CL) $*.c $(LINK_FLAGS) graphics.lib ;
  53.  
  54. tgapack.exe: tgapack.c
  55.     $(CL) $*.c $(LINK_FLAGS) graphics.lib ;
  56.