home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c011 / 1.ddi / MISC / FXLIB_C next >
Encoding:
Text File  |  1989-06-01  |  2.2 KB  |  82 lines

  1. # fxLIB_c Make File                                                           #
  2. # Copyright (c) Genus Microprogramming, Inc. 1988-89  All Rights Reserved.    #
  3.  
  4.  
  5. ###############################################################################
  6. #                                                                             #
  7. # This make file is for making the PCX Effects Clipper Library.               #
  8. #                                                                             #
  9. #                                                                             #
  10. # Microsoft C 5.1                         Programmer: Chris Howard  5/08/89   #
  11. #                                                                             #
  12. ###############################################################################
  13.  
  14.  
  15. # Compiler and linker flags
  16. CFLAGS   = /Gs /AL /Oalt /FPa /Zl /c
  17. LFLAGS   =
  18. DFLAGS   = /DLINT_ARGS /W3
  19.  
  20. # Compiler Programs
  21. CC       = cl   $(CFLAGS)  $(DFLAGS)
  22. LINK     = link $(LFLAGS) 
  23. LIB      = lib
  24.  
  25. # Directories
  26. ASMDIR   = ..\asm
  27. HDIR     = ..\h
  28. LIBDIR   = .
  29.  
  30. # Include files
  31. FXCLIP   = $(HDIR)\fxclip.h
  32.  
  33. # Libraries
  34. FXLIB    = $(LIBDIR)\fx_clip
  35.  
  36. # Remember:
  37. #
  38. #   $*   = Base name of the outfile (without extension)
  39. #   $@   = Complete outfile name
  40. #   $**  = Complete list of infiles
  41. #
  42.  
  43. ############
  44.  
  45. # fx Set Effect
  46. $(LIBDIR)\fxSE_c.obj: $*.c $(FXCLIP)
  47.          $(CC)  $*.c /Fo$@
  48.          $(LIB) $(FXLIB) -$* +$@;
  49.  
  50. # fx Virtual Effect
  51. $(LIBDIR)\fxVE_c.obj: $*.c $(FXCLIP)
  52.          $(CC)  $*.c /Fo$@
  53.          $(LIB) $(FXLIB) -$* +$@;
  54.  
  55. # fx Time Delay and Keyboard
  56. $(LIBDIR)\fxDK_c.obj: $*.c $(FXCLIP)
  57.          $(CC)  $*.c /Fo$@
  58.          $(LIB) $(FXLIB) -$* +$@;
  59.  
  60. # fx Tone and Play
  61. $(LIBDIR)\fxTP_c.obj: $*.c $(FXCLIP)
  62.          $(CC)  $*.c /Fo$@
  63.          $(LIB) $(FXLIB) -$* +$@;
  64.  
  65. # fx Palette Effects
  66. $(LIBDIR)\fxPC_c.obj: $*.c $(FXCLIP)
  67.          $(CC)  $*.c /Fo$@
  68.          $(LIB) $(FXLIB) -$* +$@;
  69.  
  70. # fx Random Numbers
  71. $(LIBDIR)\fxSR_c.obj: $*.c $(FXCLIP)
  72.          $(CC)  $*.c /Fo$@
  73.          $(LIB) $(FXLIB) -$* +$@;
  74.  
  75. # fx File Image
  76. $(LIBDIR)\fxFI_c.obj: $*.c $(FXCLIP)
  77.          $(CC)  $*.c /Fo$@
  78.          $(LIB) $(FXLIB) -$* +$@;
  79.  
  80. # End.
  81.  
  82.