⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.cfg

📁 linux下的jpeg解码库
💻 CFG
📖 第 1 页 / 共 2 页
字号:
# Makefile for Independent JPEG Group's software# makefile.cfg is edited by configure to produce a custom Makefile.# Read installation instructions before saying "make" !!# For compiling with source and object files in different directories.srcdir = @srcdir@VPATH = @srcdir@# Where to install the programs and man pages.prefix = @prefix@exec_prefix = @exec_prefix@bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libincludedir = $(prefix)/includebinprefix =manprefix =manext = 1mandir = $(prefix)/man/man$(manext)# The name of your C compiler:CC= @CC@# You may need to adjust these cc options:CFLAGS= @CFLAGS@ @CPPFLAGS@ @INCLUDEFLAGS@# Generally, we recommend defining any configuration symbols in jconfig.h,# NOT via -D switches here.# However, any special defines for ansi2knr.c may be included here:ANSI2KNRFLAGS= @ANSI2KNRFLAGS@# Link-time cc options:LDFLAGS= @LDFLAGS@# To link any special libraries, add the necessary -l commands here.LDLIBS= @LIBS@# If using GNU libtool, LIBTOOL references it; if not, LIBTOOL is empty.LIBTOOL = @LIBTOOL@# $(O) expands to "lo" if using libtool, plain "o" if not.# Similarly, $(A) expands to "la" or "a".O = @O@A = @A@# Library version ID; libtool uses this for the shared library version number.# Note: we suggest this match the macro of the same name in jpeglib.h.JPEG_LIB_VERSION = @JPEG_LIB_VERSION@# Put here the object file name for the correct system-dependent memory# manager file.  For Unix this is usually jmemnobs.o, but you may want# to use jmemansi.o or jmemname.o if you have limited swap space.SYSDEPMEM= @MEMORYMGR@# miscellaneous OS-dependent stuffSHELL= /bin/sh# linkerLN= @LN@# file deletion commandRM= rm -f# directory creation commandMKDIR= mkdir# library (.a) file creation commandAR= ar rc# second step in .a creation (use "touch" if not needed)AR2= @RANLIB@# installation programINSTALL= @INSTALL@INSTALL_PROGRAM= @INSTALL_PROGRAM@INSTALL_LIB= @INSTALL_LIB@INSTALL_DATA= @INSTALL_DATA@# End of configurable options.# source files: JPEG library properLIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \        jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \        jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \        jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \        jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \        jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \        jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \        jquant2.c jutils.c jmemmgr.c# memmgr back ends: compile only one of these into a working librarySYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcomAPPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \        rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \        rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.cSOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)# files included by source filesINCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \        jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h# documentation, test, and support filesDOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \        wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \        coderules.doc filelist.doc change.logMKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \        makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \        makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \        maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \        makvms.optCONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \        jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \        jconfig.vmsCONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.shOTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asmTESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \        testimgp.jpgDISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \        $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)# library object files common to compression and decompressionCOMOBJECTS= jcomapi.$(O) jutils.$(O) jerror.$(O) jmemmgr.$(O) $(SYSDEPMEM)# compression library object filesCLIBOBJECTS= jcapimin.$(O) jcapistd.$(O) jctrans.$(O) jcparam.$(O) \        jdatadst.$(O) jcinit.$(O) jcmaster.$(O) jcmarker.$(O) jcmainct.$(O) \        jcprepct.$(O) jccoefct.$(O) jccolor.$(O) jcsample.$(O) jchuff.$(O) \        jcphuff.$(O) jcdctmgr.$(O) jfdctfst.$(O) jfdctflt.$(O) \        jfdctint.$(O)# decompression library object filesDLIBOBJECTS= jdapimin.$(O) jdapistd.$(O) jdtrans.$(O) jdatasrc.$(O) \        jdmaster.$(O) jdinput.$(O) jdmarker.$(O) jdhuff.$(O) jdphuff.$(O) \        jdmainct.$(O) jdcoefct.$(O) jdpostct.$(O) jddctmgr.$(O) \        jidctfst.$(O) jidctflt.$(O) jidctint.$(O) jidctred.$(O) \        jdsample.$(O) jdcolor.$(O) jquant1.$(O) jquant2.$(O) jdmerge.$(O)# These objectfiles are included in libjpeg.aLIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)# object files for sample applications (excluding library files)COBJECTS= cjpeg.$(O) rdppm.$(O) rdgif.$(O) rdtarga.$(O) rdrle.$(O) \        rdbmp.$(O) rdswitch.$(O) cdjpeg.$(O)DOBJECTS= djpeg.$(O) wrppm.$(O) wrgif.$(O) wrtarga.$(O) wrrle.$(O) \        wrbmp.$(O) rdcolmap.$(O) cdjpeg.$(O)TROBJECTS= jpegtran.$(O) rdswitch.$(O) cdjpeg.$(O) transupp.$(O)all: @A2K_DEPS@ libjpeg.$(A) cjpeg djpeg jpegtran rdjpgcom wrjpgcom# Special compilation rules to support ansi2knr and libtool..SUFFIXES: .lo .la# How to compile with libtool.@COM_LT@.c.lo:@COM_LT@	$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $(srcdir)/$*.c# How to use ansi2knr, when not using libtool.@COM_A2K@.c.o:@COM_A2K@	./ansi2knr $(srcdir)/$*.c knr/$*.c@COM_A2K@	$(CC) $(CFLAGS) -c knr/$*.c@COM_A2K@	$(RM) knr/$*.c# How to use ansi2knr AND libtool.@COM_A2K@.c.lo:@COM_A2K@	./ansi2knr $(srcdir)/$*.c knr/$*.c@COM_A2K@	$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c knr/$*.c@COM_A2K@	$(RM) knr/$*.cansi2knr: ansi2knr.c	$(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr $(srcdir)/ansi2knr.c	$(MKDIR) knr

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -