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

📄 makefile

📁 早期freebsd实现
💻
字号:
CPP = $(CC) -EMAKE = make  # BSD doesn't have it as a default.#Note: an alternative is  CPP = /lib/cppall: xmakefile doalldoall:	$(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} all#This is used in making a distribution.#Do not use it on development directories!distclean:	-rm -f paths.h config.h emacs-* temacs xemacs xmakefile core \   *~ \#* *.o libXMenu11.a log*clean:	-rm -f temacs xemacs xmakefile core \#* *.o libXMenu11.axemacs: xmakefile doxemacsdoxemacs:	$(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} xemacstemacs: xmakefile dotemacsdotemacs:	$(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} temacs# If you have a problem with cc -E here, changing# the definition of CPP above may fix it.xmakefile: ymakefile config.h	-rm -f xmakefile junk.c	cp ymakefile junk.c	$(CPP) -DYMAKEFILE junk.c | \	sed -e 's/^#.*//' -e 's/^[ 	][ 	]*$$//' -e 's/^ /	/' | \	sed -n -e '/^..*$$/p' > xmakefile	rm -f junk.ctags:	etags [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el

⌨️ 快捷键说明

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