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:=
|
2007-11-28 12:19:03 +05:30
|
|
|
hostprogs-y += usage 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
|
2006-10-20 03:42:47 +05:30
|
|
|
|
2007-06-15 03:11:15 +05:30
|
|
|
HOSTCFLAGS_usage.o = -I$(srctree)/include
|
|
|
|
|
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-11-29 09:01:20 +05:30
|
|
|
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 12:19:03 +05:30
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
include/usage_compressed.h: applets/usage $(srctree)/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)
|