home *** CD-ROM | disk | FTP | other *** search
- # fxLIB_c Make File #
- # Copyright (c) Genus Microprogramming, Inc. 1988-89 All Rights Reserved. #
-
-
- ###############################################################################
- # #
- # This make file is for making the PCX Effects Clipper Library. #
- # #
- # #
- # Microsoft C 5.1 Programmer: Chris Howard 5/08/89 #
- # #
- ###############################################################################
-
-
- # Compiler and linker flags
- CFLAGS = /Gs /AL /Oalt /FPa /Zl /c
- LFLAGS =
- DFLAGS = /DLINT_ARGS /W3
-
- # Compiler Programs
- CC = cl $(CFLAGS) $(DFLAGS)
- LINK = link $(LFLAGS)
- LIB = lib
-
- # Directories
- ASMDIR = ..\asm
- HDIR = ..\h
- LIBDIR = .
-
- # Include files
- FXCLIP = $(HDIR)\fxclip.h
-
- # Libraries
- FXLIB = $(LIBDIR)\fx_clip
-
- # Remember:
- #
- # $* = Base name of the outfile (without extension)
- # $@ = Complete outfile name
- # $** = Complete list of infiles
- #
-
- ############
-
- # fx Set Effect
- $(LIBDIR)\fxSE_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx Virtual Effect
- $(LIBDIR)\fxVE_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx Time Delay and Keyboard
- $(LIBDIR)\fxDK_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx Tone and Play
- $(LIBDIR)\fxTP_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx Palette Effects
- $(LIBDIR)\fxPC_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx Random Numbers
- $(LIBDIR)\fxSR_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # fx File Image
- $(LIBDIR)\fxFI_c.obj: $*.c $(FXCLIP)
- $(CC) $*.c /Fo$@
- $(LIB) $(FXLIB) -$* +$@;
-
- # End.
-
-