blob: 9bb4b629217c417db1a88ccb63419bd706225736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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.
obj-y:=
obj-y += applets.o
obj-y += busybox.o
# Generated file needs additional love
applets/applets.o: include/usage_compressed.h
include/usage_compressed.h: $(srctree)/include/usage.h
@$(MAKE) $(build)=scripts
@echo ' GEN include/usage_compressed.h'
@$(srctree)/scripts/usage_compressed include/usage_compressed.h scripts
|