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

📄 makefile.in

📁 mpeng Lib
💻 IN
字号:
## Makefile.in for the MPEG Library -- this has to be processed by# `configure' to be meaningful!#SHELL         = /bin/sh# Compiler and compiler/preprocessor flagsCC            = @CC@OPTIMIZE      = @OPTIMIZE@EXTRA_CFLAGS  = @EXTRA_CFLAGS@INCLUDE_DIRS  = -I. @INCLUDE_DIRS@DEFINES       = @DEFINES@CFLAGS        = $(OPTIMIZE) $(EXTRA_CFLAGS)CPPFLAGS      = $(INCLUDE_DIRS) $(DEFINES)# Installation directories (and install program)prefix          = @prefix@exec_prefix     = @exec_prefix@INSTALL_INCLUDE = @includedir@INSTALL_LIBRARY = @libdir@INSTALL         = @INSTALL@# Other miscellaneous programsAR            = @AR@ARFLAGS       = -ruRANLIB        = @RANLIB@# Source for the library itself -- note that we define LIBSRC and# LIBOBJ this way (instead of just LIBOBJ=$(LIBSRC:.c=.o) because# HP-UX make is stupid.DECODER_SRC   = util.c video.c parseblock.c motionvector.c decoders.c \		jrevdct.c wrapper.c globals.c 24bit.c gdith.cDITHER_SRC    = fs2.c fs2fast.c fs4.c hybrid.c hybriderr.c 2x2.c gray.c \		mono.c ordered.c ordered2.c mb_ordered.cLIBSRC        = @libsrc@LIBOBJ        = @libobj@# Other files of interestLIBRARY       = libmpeg.aSHLIB         = libmpeg.soHEADER        = mpeg.hEXTRAS        = @extras@# Implicit targets.c.o:		$(CC) -c $(CFLAGS) $(CPPFLAGS) $<# Library/cleanup targets: all:		lib $(EXTRAS)lib:		$(LIBRARY)shlib:          $(SHLIB)$(LIBRARY):	$(LIBOBJ)		$(AR) $(ARFLAGS) $(LIBRARY) $(LIBOBJ)		$(RANLIB) $(LIBRARY)$(SHLIB):	$(LIBOBJ)		$(CC) -shared -o $(SHLIB) $(LIBOBJ)install:	$(LIBRARY)		$(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)		$(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)		$(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)		@if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; ficlean:		rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core		cd extras && $(MAKE) cleandistclean:	clean		rm -f config.cache config.log config.status Makefile config.h		cd extras && $(MAKE) distclean# Executable targets (mpegtest, easympeg [GL platforms only])mpegtest:	extras/mpegtest $(LIBRARY)		rm -f mpegtest		ln -s extras/mpegtest .extras/mpegtest:		(cd extras ; $(MAKE) mpegtest)easympeg:	extras/easympeg $(LIBRARY)		rm -f easympeg		ln -s extras/easympeg .extras/easympeg:		(cd extras ; $(MAKE) easympeg)check:		mpegtest		./mpegtest -checksum test.mpg# Targets to check that configuration stuff is up-to-dateconfigure: configure.in	@echo "configure is out-of-date -- run autoconf"config.status config.cache: configure	@echo "$@ out-of-date -- run configure"Makefile: Makefile.in config.status	@echo "$@ out-of-date -- run configure or config.status"extras/Makefile: extras/Makefile.in config.status	@echo "$@ out-of-date -- run configure or config.status"config.h: config.h.in config.status	@echo "$@ out-of-date -- run configure or config.status"

⌨️ 快捷键说明

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