2006-10-05 15:47:08 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
|
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
#
|
|
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
|
|
|
|
2007-10-08 02:16:34 +05:30
|
|
|
obj-y :=
|
|
|
|
obj-y += applets.o
|
2006-10-20 03:41:06 +05:30
|
|
|
|
2007-06-15 03:11:15 +05:30
|
|
|
hostprogs-y:=
|
2009-10-02 04:40:32 +05:30
|
|
|
hostprogs-y += usage usage_pod applet_tables
|
2006-10-20 03:41:06 +05:30
|
|
|
|
2007-10-08 02:16:34 +05:30
|
|
|
always:= $(hostprogs-y)
|
2006-10-20 03:41:06 +05:30
|
|
|
|
2007-06-15 03:11:15 +05:30
|
|
|
# Generated files need additional love
|
2009-04-19 17:45:51 +05:30
|
|
|
|
|
|
|
# This trick decreases amount of rebuilds
|
2009-04-18 03:26:02 +05:30
|
|
|
# if tree is merely renamed/copied
|
2009-04-19 19:42:50 +05:30
|
|
|
ifeq ($(srctree),$(objtree))
|
2009-04-19 17:45:51 +05:30
|
|
|
srctree_slash =
|
|
|
|
else
|
|
|
|
srctree_slash = $(srctree)/
|
|
|
|
endif
|
|
|
|
|
2009-10-02 04:40:32 +05:30
|
|
|
HOSTCFLAGS_usage.o = -I$(srctree_slash)include -Iinclude
|
|
|
|
HOSTCFLAGS_usage_pod.o = -I$(srctree_slash)include -Iinclude
|
2007-06-15 03:11:15 +05:30
|
|
|
|
2007-11-29 09:01:20 +05:30
|
|
|
applets/applets.o: include/usage_compressed.h include/applet_tables.h
|
2007-11-28 12:19:03 +05:30
|
|
|
|
2007-12-10 12:36:04 +05:30
|
|
|
applets/applet_tables: .config
|
2009-10-02 04:40:32 +05:30
|
|
|
applets/usage: .config
|
|
|
|
applets/usage_pod: .config include/applet_tables.h
|
2007-11-29 09:01:20 +05:30
|
|
|
|
|
|
|
quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h
|
2009-04-19 17:45:51 +05:30
|
|
|
cmd_gen_usage_compressed = $(srctree_slash)applets/usage_compressed include/usage_compressed.h applets
|
2007-11-28 12:19:03 +05:30
|
|
|
|
2009-04-19 17:45:51 +05:30
|
|
|
include/usage_compressed.h: applets/usage $(srctree_slash)applets/usage_compressed
|
2007-01-02 11:12:35 +05:30
|
|
|
$(call cmd,gen_usage_compressed)
|
2007-11-28 12:19:03 +05:30
|
|
|
|
2007-11-29 09:01:20 +05:30
|
|
|
quiet_cmd_gen_applet_tables = GEN include/applet_tables.h
|
|
|
|
cmd_gen_applet_tables = applets/applet_tables include/applet_tables.h
|
|
|
|
|
2007-11-28 12:19:03 +05:30
|
|
|
include/applet_tables.h: applets/applet_tables
|
2007-11-29 09:01:20 +05:30
|
|
|
$(call cmd,gen_applet_tables)
|