makefile.am

来自「mediastreamer2是开源的网络传输媒体流的库」· AM 代码 · 共 34 行

AM
34
字号
## Process this file with automake to produce Makefile.inAUTOMAKE_OPTIONS = foreign 1.6 dist-zip dist-bzip2SUBDIRS = lib include doc examples tests m4# we include the whole debian/ dir in EXTRA_DIST because there's a problem# with autotools and HFS+ MacOSX file systems that caused debian/Makefile.am# to pick up on the lowercase changelog file and add ChangeLog to DIST_COMMON# because of it, breaking make dist.  This works just as well.EXTRA_DIST = \	README CHANGES COPYING LICENSE \	autogen.sh win32 symbian SConstruct \	libtheora.spec libtheora.spec.in \	theora-uninstalled.pc.inpkgconfigdir = $(libdir)/pkgconfigpkgconfig_DATA = theora.pcdist-hook:	for item in $(EXTRA_DIST); do \	  if test -d $$item; then \	    echo -n "cleaning $$item dir for distribution..."; \	    rm -rf `find $(distdir)/$$item -name .svn`; \	    echo "OK"; \	  fi; \	donedebug:	$(MAKE) all CFLAGS="@DEBUG@"profile:	$(MAKE) all CFLAGS="@PROFILE@"

⌨️ 快捷键说明

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