📄 makefile.in
字号:
## $Id: Makefile.in,v 1.12 2002/11/01 19:41:08 maxk Exp $#CONFIGURE_FILES = Makefile config.status config.cache config.h config.logPACKAGE = bluez-kernelVERSION = 2.3INSTALL = @INSTALL@KDIR = @KDIR@DEPMOD = /sbin/depmodSUBDIRS = include core drivers rfcomm bnep misc docdefine make_subdirs for d in $(SUBDIRS); do make -C $$d $@; doneendefall: $(SUBDIRS) @$(make_subdirs)install: $(SUBDIRS) @$(make_subdirs) $(DEPMOD) -auninstall: ;update: ./update_kernel $(KDIR)clean: $(SUBDIRS) @$(make_subdirs)distclean: $(SUBDIRS) @$(make_subdirs) rm -f *~ $(CONFIGURE_FILES)## Dist tar ball #distdir =$(PACKAGE)-$(VERSION)DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL \Make.kernel Makefile.am Makefile.in NEWS acinclude.m4 aclocal.m4 \config.guess config.sub configure configure.in \install-sh missing mkinstalldirsdist: rm -rf $(distdir); mkdir $(distdir) for dir in $(SUBDIRS); do \ test -d $$dir && cp -a $$dir $(distdir); \ done for file in $(DIST_COMMON); do \ test -f $$file && cp -a $$file $(distdir); \ done cd $(distdir); \ for dir in $(SUBDIRS); do \ test -f $$dir/Makefile && (cd $$dir; make distclean); \ done; \ rm -f $(CONFIGURE_FILES); \ rm -rf `find -name CVS`; \ rm -f `find -type f -a \ \( -name '*.o' -o -name 'Makefile' \ -o -name '*.orig' -o -name '*.rej' -o -name '*~' \ -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ -o -name '.*.rej' -o -name '.SUMS' -o -size 0 \)`; \ touch `find .` tar czvf $(distdir).tar.gz $(distdir) rm -rf $(distdir) @test -f $(distdir).tar.gz && echo; echo $(distdir).tar.gz is ready for distribution
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -