comparison Makefile @ 653:2986aa63a021

Move commands into "posix", "lsb", and "other" menus/directories.
author Rob Landley <rob@landley.net>
date Sat, 25 Aug 2012 14:25:22 -0500
parents 150a6d81bd02
children 0af2375a8ef8
comparison
equal deleted inserted replaced
652:2d7c56913fda 653:2986aa63a021
1 # Makefile for toybox. 1 # Makefile for toybox.
2 # Copyright 2006 Rob Landley <rob@landley.net> 2 # Copyright 2006 Rob Landley <rob@landley.net>
3 3
4 all: toybox 4 all: toybox
5 5
6 toybox toybox_unstripped: .config *.[ch] lib/*.[ch] toys/*.[ch] scripts/*.sh 6 toybox toybox_unstripped: .config *.[ch] lib/*.[ch] toys/*.h toys/*/*.c scripts/*.sh
7 scripts/make.sh 7 scripts/make.sh
8 8
9 .PHONY: clean distclean baseline bloatcheck install install_flat \ 9 .PHONY: clean distclean baseline bloatcheck install install_flat \
10 uinstall uninstall_flat test tests help scripts/test 10 uinstall uninstall_flat test tests help scripts/test
11 11
12 include kconfig/Makefile 12 include kconfig/Makefile
13 13
14 $(KCONFIG_TOP): generated/Config.in 14 $(KCONFIG_TOP): generated/Config.in
15 generated/Config.in: toys/*.c scripts/genconfig.sh 15 generated/Config.in: toys/*/*.c scripts/genconfig.sh
16 scripts/genconfig.sh 16 scripts/genconfig.sh
17 17
18 HOSTCC?=cc 18 HOSTCC?=cc
19 19
20 # Development targets 20 # Development targets