# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Makefile to build the  files of gd1.2
# To compile all:
# 		make
# To clean the useless files: *.o 
#               make clean
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#Depending on your system, you will need to modify this makefile.

#If you do not have gcc, change the setting for CC, but you must
#use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc
#compiler; get gcc if you are still using it). 

#If the ar command fails on your system, consult the ar manpage
#for your system. 


CC=gcc
AR=ar
LIBS= -lm

#all: libgd.a gddemo giftogd webgif
all:    libgd.a 


libgd.a: gd.o gdfontt.o gdfonts.o gdfontmb.o gdfontl.o gdfontg.o \
	gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h gdfontg.h
	rm -f libgd.a
	$(AR) rc libgd.a gd.o gdfontt.o gdfonts.o gdfontmb.o \
		gdfontl.o gdfontg.o

#gddemo: gddemo.o libgd.a gd.h gdfonts.h gdfontl.h
#	$(CC) $(CFLAGS)  gddemo.o -o gddemo	$(LIBS)
webgif: webgif.o libgd.a gd.h
	$(CC) $(CFLAGS)  webgif.o -o webgif -L. -lgd $(LIBS)
#giftogd: giftogd.o libgd.a gd.h
#	$(CC) $(CFLAGS)  giftogd.o -o giftogd	 -L. -lgd $(LIBS) 



clean:
	rm -f *.o 

