2006-10-05 10:17:08 +00:00
|
|
|
# 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-07 20:46:34 +00:00
|
|
|
obj-y :=
|
|
|
|
obj-y += applets.o
|
2006-10-19 22:11:06 +00:00
|
|
|
|
2007-06-14 21:41:15 +00:00
|
|
|
hostprogs-y:=
|
2009-10-01 23:10:32 +00:00
|
|
|
hostprogs-y += usage usage_pod applet_tables
|
2006-10-19 22:11:06 +00:00
|
|
|
|
2007-10-07 20:46:34 +00:00
|
|
|
always:= $(hostprogs-y)
|
2006-10-19 22:11:06 +00:00
|
|
|
|
2007-06-14 21:41:15 +00:00
|
|
|
# Generated files need additional love
|
2009-04-19 12:15:51 +00:00
|
|
|
|
|
|
|
# This trick decreases amount of rebuilds
|
2009-04-17 21:56:02 +00:00
|
|
|
# if tree is merely renamed/copied
|
2009-04-19 14:12:50 +00:00
|
|
|
ifeq ($(srctree),$(objtree))
|
2009-04-19 12:15:51 +00:00
|
|
|
srctree_slash =
|
|
|
|
else
|
|
|
|
srctree_slash = $(srctree)/
|
|
|
|
endif
|
|
|
|
|
2009-10-01 23:10:32 +00:00
|
|
|
HOSTCFLAGS_usage.o = -I$(srctree_slash)include -Iinclude
|
|
|
|
HOSTCFLAGS_usage_pod.o = -I$(srctree_slash)include -Iinclude
|
2007-06-14 21:41:15 +00:00
|
|
|
|
2007-11-29 03:31:20 +00:00
|
|
|
applets/applets.o: include/usage_compressed.h include/applet_tables.h
|
2007-11-28 06:49:03 +00:00
|
|
|
|
2009-10-22 10:12:17 +00:00
|
|
|
applets/applet_tables: .config $(srctree_slash)include/applets.h
|
|
|
|
applets/usage: .config $(srctree_slash)include/applets.h
|
|
|
|
applets/usage_pod: .config include/applet_tables.h $(srctree_slash)include/applets.h
|
2007-11-29 03:31:20 +00:00
|
|
|
|
|
|
|
quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h
|
2009-04-19 12:15:51 +00:00
|
|
|
cmd_gen_usage_compressed = $(srctree_slash)applets/usage_compressed include/usage_compressed.h applets
|
2007-11-28 06:49:03 +00:00
|
|
|
|
2009-04-19 12:15:51 +00:00
|
|
|
include/usage_compressed.h: applets/usage $(srctree_slash)applets/usage_compressed
|
2007-01-02 05:42:35 +00:00
|
|
|
$(call cmd,gen_usage_compressed)
|
2007-11-28 06:49:03 +00:00
|
|
|
|
2007-11-29 03:31:20 +00:00
|
|
|
quiet_cmd_gen_applet_tables = GEN include/applet_tables.h
|
|
|
|
cmd_gen_applet_tables = applets/applet_tables include/applet_tables.h
|
|
|
|
|
2007-11-28 06:49:03 +00:00
|
|
|
include/applet_tables.h: applets/applet_tables
|
2007-11-29 03:31:20 +00:00
|
|
|
$(call cmd,gen_applet_tables)
|