# # Makefile template for GIF combining lib # This file is used by the configure program to generate Makefile # ma_muquit@fccc.edu # oct-11-1997 # CC= @CC@ DEFS= @DEFS@ AR= ar cq RANLIB= @RANLIB@ LIBNAME= libbigplus.a INCLUDES= -I. # replace -O with -g in order to debug DEFINES= $(INCLUDES) $(DEFS) -DSYS_UNIX=1 CFLAGS= -O $(DEFINES) SRCS = bigplus.c OBJS = bigplus.o .c.o: rm -f $@ $(CC) $(CFLAGS) -c $*.c all: $(LIBNAME) $(LIBNAME): $(OBJS) rm -f $@ $(AR) $@ $(OBJS) $(RANLIB) $@ clean: rm -f $(OBJS) $(LIBNAME) core