home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Web / Utilities / wwwcount-2.3 / combine / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-05-02  |  1.3 KB  |  49 lines

  1. #
  2. # Makefile template for GIF combining lib
  3. # This file is used by the configure program to generate Makefile
  4. # muquit@semcor.com
  5. # 07-11-95, -- muquit
  6. # 09-17-95 (Count 1.5), -- muquit
  7. # 11-25-95 (Count 2.0), -- muquit
  8.  
  9. CC= @CC@
  10. DEFS= @DEFS@
  11. AR= ar cq
  12. RANLIB= @RANLIB@
  13.  
  14. INCLUDES=  -I. -I..
  15.  
  16. # replace -O with -g in order to debug
  17.  
  18. DEFINES= $(INCLUDES) $(DEFS) -D__USE_FIXED_PROTOTYPES__ -DSYS_UNIX=1
  19. CFLAGS= -O $(DEFINES)
  20.  
  21. SRCS = crbasei.c allocim.c readgif.c rddata.c dstraimg.c\
  22.        readblk.c lzwdec.c syncimg.c duplicim.c writegif.c lsbfwrs.c\
  23.        lzenc.c uncmpimg.c readim.c flatten.c signature.c quantize.c\
  24.        compimg.c rgbtran.c tranrgb.c compcmap.c frameim.c modulate.c\
  25.        alphaim.c setpixel.c getfinfo.c imgstr.c gdfonts.c negate.c\
  26.        rotate.c getsize.c opaqim.c cropim.c
  27. OBJS = crbasei.o allocim.o readgif.o rddata.o dstraimg.o\
  28.        readblk.o lzwdec.o syncimg.o duplicim.o writegif.o lsbfwrs.o\
  29.        lzwenc.o uncmpimg.o readim.o flatten.o signature.o quantize.o\
  30.        compimg.o rgbtran.o tranrgb.o compcmap.o frameim.o modulate.o\
  31.        alphaim.o setpixel.o getfinfo.o imgstr.o gdfonts.o negate.o\
  32.        rotate.o getsize.o opaqim.o cropim.o
  33.  
  34. .c.o:
  35.     rm -f $@
  36.     $(CC) $(CFLAGS) -c $*.c
  37.  
  38. all: libCombine.a
  39.  
  40. libCombine.a: $(OBJS)
  41.     rm -f $@
  42.     $(AR) $@ $(OBJS)
  43.     $(RANLIB) $@
  44.  
  45. combine.o: combine.h
  46.  
  47. clean:
  48.     rm -f $(OBJS) libCombine.a core
  49.