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

📄 android.mk

📁 Android 一些工具
💻 MK
字号:
LOCAL_PATH:= $(call my-dir)include $(CLEAR_VARS)LOCAL_SRC_FILES:= \	alias.c \	arith.c \	arith_lex.c \	builtins.c \	cd.c \	error.c \	eval.c \	exec.c \	expand.c \	input.c \	jobs.c \	main.c \	memalloc.c \	miscbltin.c \	mystring.c \	nodes.c \	options.c \	parser.c \	redir.c \	show.c \	syntax.c \	trap.c \	output.c \	var.c \	bltin/echo.c \	init.cLOCAL_MODULE:= shLOCAL_CFLAGS += -DSHELLmake_ash_files: PRIVATE_SRC_FILES := $(SRC_FILES)make_ash_files: PRIVATE_CFLAGS := $(LOCAL_CFLAGS)make_ash_files:	p4 edit arith.c arith_lex.c arith.h builtins.h builtins.c 	p4 edit init.c nodes.c nodes.h token.h 	sh ./mktokens	bison -o arith.c arith.y	flex -o arith_lex.c arith_lex.l	perl -ne 'print if ( /^\#\s*define\s+ARITH/ );' < arith.c > arith.h	sh ./mkbuiltins shell.h builtins.def . -Wall -O2	sh ./mknodes.sh nodetypes nodes.c.pat .	sh ./mkinit.sh $(PRIVATE_SRC_FILES) include $(BUILD_EXECUTABLE)

⌨️ 快捷键说明

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