# Makefile for src/lib/jpeg
#
LIB = ../lib/libjpeg.a

CFLAGS= ${DEBUGFLAG} ${C_OPT} -D${MACH_OS} \
        -I./  -I../../include -I${IRIS_ROOT}/include

all : ${LIB}

JPEG_C_SRCS = jcapi.c \
	jccoefct.c \
	jccolor.c \
	jcdctmgr.c \
	jchuff.c \
	jcmainct.c \
	jcmarker.c \
	jcmaster.c \
	jcomapi.c \
	jcparam.c \
	jcprepct.c \
	jcsample.c \
	jdapi.c \
	jdatasrc.c \
	jdatadst.c \
	jdcoefct.c \
	jdcolor.c \
	jddctmgr.c \
	jdhuff.c \
	jdmainct.c \
	jdmarker.c \
	jdmaster.c \
	jdpostct.c \
	jdsample.c \
	jerror.c \
	jutils.c \
	jfdctfst.c \
	jfdctflt.c \
	jfdctint.c \
	jidctfst.c \
	jidctflt.c \
	jidctint.c \
	jidctred.c \
	jquant1.c \
	jquant2.c \
	jdmerge.c \
	jmemmgr.c \
	jmemansi.c \
	jmemname.c \
	jmemnobs.c

JPEG_C_OBJS = ${JPEG_C_SRCS:.c=.o}


MKDEPEND_CSRCS = ${JPEG_C_SRCS} 
depend:; ${MKDEPEND}

${LIB} : ${JPEG_C_OBJS}
		rm -f ${LIB} ; ar -rscv ${LIB} $? ;
		rootchmod 664 ${LIB}

install : all

cleanexe:;
clean:		cleanexe
		rm -f *.o ${LIB}




# DO NOT DELETE

jcapi.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcapi.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jccoefct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jccoefct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jccolor.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jccolor.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcdctmgr.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcdctmgr.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jchuff.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jchuff.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcmainct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcmainct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcmarker.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcmarker.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcmaster.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcmaster.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcomapi.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcomapi.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcparam.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcparam.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcprepct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcprepct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jcsample.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jcsample.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdapi.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdapi.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdatasrc.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdatasrc.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdatadst.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdatadst.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdcoefct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdcoefct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdcolor.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdcolor.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jddctmgr.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jddctmgr.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jdhuff.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdhuff.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdmainct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdmainct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdmarker.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdmarker.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdmaster.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdmaster.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdpostct.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdpostct.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdsample.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdsample.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jerror.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jerror.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jerror.o: jversion.h
jutils.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jutils.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jfdctfst.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jfdctfst.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jfdctflt.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jfdctflt.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jfdctint.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jfdctint.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jidctfst.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jidctfst.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jidctflt.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jidctflt.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jidctint.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jidctint.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jidctred.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jidctred.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h jdct.h
jquant1.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jquant1.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jquant2.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jquant2.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jdmerge.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jdmerge.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jmemmgr.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jmemmgr.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jmemmgr.o: jmemsys.h
jmemansi.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jmemansi.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jmemansi.o: jmemsys.h
jmemname.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jmemname.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jmemname.o: jmemsys.h
jmemnobs.o: jinclude.h ../../include/jconfig.h ../../include/jpeglib.h
jmemnobs.o: ../../include/jmorecfg.h jpegint.h ../../include/jerror.h
jmemnobs.o: jmemsys.h
