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:=
|
2007-11-28 06:49:03 +00:00
|
|
|
hostprogs-y += usage 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
|
2006-10-19 22:12:47 +00:00
|
|
|
|
2007-06-14 21:41:15 +00:00
|
|
|
HOSTCFLAGS_usage.o = -I$(srctree)/include
|
|
|
|
|
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
|
|
|
|
2007-11-29 03:31:20 +00:00
|
|
|
applets/usage: .config $(srctree)/applets/usage_compressed
|
|
|
|
|
|
|
|
quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h
|
|
|
|
cmd_gen_usage_compressed = $(srctree)/applets/usage_compressed include/usage_compressed.h applets
|
2007-11-28 06:49:03 +00:00
|
|
|
|
2007-08-12 20:58:27 +00:00
|
|
|
include/usage_compressed.h: applets/usage $(srctree)/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)
|