📄 makefile
字号:
################################################################################ - Unified Makefile for XviD for *nix environments -## Copyright(C) 2003 Edouard Gomez <ed.gomez@free.fr>### Description:# This Makefile allows building XviD sources to obtain a shared library# and a static library. This Makefie uses variables defined in the# platform.inc file. This platform.inc file is usually created by the# ./configure script whenever a unix shell is available.## Nota Bene for mingw32/djgpp users:# However if you provide a platform.inc file adapted to your OS, then# change the include platform.inc to include yourfile.inc and it should# work too.################################################################################include sources.incinclude platform.incRM = rm -rf################################################################################ Build rules################################################################################ Their ObjectsOBJECTS=$(GENERIC_OBJECTS)OBJECTS+=$(DIVX4COMPAT_OBJECTS)OBJECTS+=$(ASSEMBLY_OBJECTS)OBJECTS+=$(DCT_IA64_OBJECTS)#-----------------------------------------------------------------------------# The default rule#-----------------------------------------------------------------------------.SUFFIXES: .$(OBJECT_EXTENSION) .$(ASSEMBLY_EXTENSION) .call: platform.inc $(STATIC_LIB) $(SHARED_LIB) @echo @echo "---------------------------------------------------------------" @echo " XviD has been built, you can now run \"# make install\" as root." @echo "---------------------------------------------------------------" @echo#-----------------------------------------------------------------------------# Generic assembly rule#-----------------------------------------------------------------------------.$(ASSEMBLY_EXTENSION).$(OBJECT_EXTENSION): @echo -n "Assembling $< ... " @$(AS) $(AFLAGS) $< -o $@ @echo "Done"#-----------------------------------------------------------------------------# Generic C rule#-----------------------------------------------------------------------------.c.$(OBJECT_EXTENSION): @echo -n "Compiling $< ... " @$(CC) -c $(ARCHITECTURE) $(BUS) $(ENDIANNESS) $(FEATURES) $(SPECIFIC_CFLAGS) $(CFLAGS) $< -o $@ @echo "Done"#-----------------------------------------------------------------------------# Static Library#-----------------------------------------------------------------------------$(STATIC_LIB): $(OBJECTS) @echo @echo -n "Linking the static library... " @ar rc $(STATIC_LIB) $(OBJECTS) @echo "Done" @echo -n "Generating static library's index... " @$(RANLIB) $(STATIC_LIB) @echo "Done"#-----------------------------------------------------------------------------# Shared Library#-----------------------------------------------------------------------------$(SHARED_LIB): $(OBJECTS) @echo @echo -n "Linking the shared library... " @$(CC) $(LDFLAGS) $(OBJECTS) -o $(SHARED_LIB) $(SPECIFIC_LDFLAGS) @echo "Done"#-----------------------------------------------------------------------------# Installation#-----------------------------------------------------------------------------install: all @echo @echo "+---------- Installing XviD libraries in $(libdir) ----------+" @echo $(INSTALL) -d $(libdir) $(INSTALL) -m 755 $(SHARED_LIB) $(libdir)/$(SHARED_LIB) $(INSTALL) -m 755 $(STATIC_LIB) $(libdir)/$(STATIC_LIB) @echo @echo "+---------- Installing XviD header in $(includedir) ----------+" @echo $(INSTALL) -d $(includedir) $(INSTALL) -m 644 $(SRCDIR)/xvid.h $(includedir)/xvid.h @echo#-----------------------------------------------------------------------------# Platorm specific file -- dumb rule for people executing make before# ./configure#-----------------------------------------------------------------------------platform.inc: platform.inc.in ./configure#-----------------------------------------------------------------------------# .PHONY targets#-----------------------------------------------------------------------------.PHONY: distclean clean info list-objects list-targets list-install-path list-cflagsclean: @echo -n "Cleaning objects... " @$(RM) $(OBJECTS) @echo "Done" @echo -n "Cleaning static library... " @$(RM) $(STATIC_LIB) @echo "Done" @echo -n "Cleaning shared library... " @$(RM) $(SHARED_LIB) @echo "Done"distclean: clean @echo -n "Cleaning generated files... " @$(RM) libxvidcore.def @$(RM) platform.inc @$(RM) config.log @$(RM) autom4te.cache @echo "Done"list-objects: @echo @echo "Object files used for this build" @echo "---------------------------------------------------------------" @echo @echo $(OBJECTS) @echolist-targets: @echo @echo "Target Libraries" @echo "---------------------------------------------------------------" @echo @echo Shared library: $(SHARED_LIB) @echo Static library: $(STATIC_LIB) @echolist-install-path: @echo @echo "Install Paths" @echo "---------------------------------------------------------------" @echo @echo Include: $(includedir) @echo Library: $(libdir) @echolist-cflags: @echo @echo "Using CFLAGS" @echo "---------------------------------------------------------------" @echo @echo CFLAGS=$(CFLAGS) @echoinfo: list-objects list-cflags list-targets list-install-path
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -