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

📄 makefile.in

📁 busybox-1.2.0,标准的Linux工具集[最新].对linux下软件的开发有着非常大的作用.
💻 IN
字号:
# Makefile for busybox## Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>## Licensed under the GPL v2 or later, see the file LICENSE in this tarball.LIBCOREUTILS_AR:=libcoreutils.aifndef $(LIBCOREUTILS_DIR)LIBCOREUTILS_DIR:=$(top_builddir)/coreutils/libcoreutilsendifsrcdir=$(top_srcdir)/coreutils/libcoreutilsLIBCOREUTILS_ALL_SRC:= cp_mv_stat.c getopt_mk_fifo_nod.cLIBCOREUTILS-y:=LIBCOREUTILS-$(CONFIG_MKFIFO)	+= getopt_mk_fifo_nod.oLIBCOREUTILS-$(CONFIG_MKNOD)	+= getopt_mk_fifo_nod.oLIBCOREUTILS-$(CONFIG_INSTALL)	+= cp_mv_stat.oLIBCOREUTILS-$(CONFIG_CP)	+= cp_mv_stat.oLIBCOREUTILS-$(CONFIG_MV)	+= cp_mv_stat.oLIBCOREUTILS-y:=$(sort $(LIBCOREUTILS-y))LIBCOREUTILS_SRC-y:=$(patsubst %,$(srcdir)/%,$(subst .o,.c,$(LIBCOREUTILS-y)))LIBCOREUTILS_SRC-a:=$(wildcard $(srcdir)/*.c)LIBRARY_SRC-y+=$(LIBCOREUTILS_SRC-y)LIBRARY_SRC-a+=$(LIBCOREUTILS_SRC-a)ifneq ($(strip $(LIBCOREUTILS-y)),)libraries-y+=$(LIBCOREUTILS_DIR)/$(LIBCOREUTILS_AR)endifLIBCOREUTILS_OBJS=$(patsubst %,$(LIBCOREUTILS_DIR)/%, $(LIBCOREUTILS-y))$(LIBCOREUTILS_DIR)/$(LIBCOREUTILS_AR): $(patsubst %,$(LIBCOREUTILS_DIR)/%,$(LIBCOREUTILS-y))	$(do_ar)$(LIBCOREUTILS_DIR)/%.o: $(srcdir)/%.c	$(compile.c)

⌨️ 快捷键说明

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