summaryrefslogtreecommitdiffstats
path: root/package/customize
diff options
context:
space:
mode:
authorEric Andersen2004-10-09 08:13:40 +0200
committerEric Andersen2004-10-09 08:13:40 +0200
commitf694016136c155f23f5cec2eb7c076c9442d846a (patch)
treed80d83cfd41783a615d5a8d2a587fee376622539 /package/customize
parentfacelift step number two (diff)
downloadbuildroot-f694016136c155f23f5cec2eb7c076c9442d846a.tar.gz
buildroot-f694016136c155f23f5cec2eb7c076c9442d846a.tar.xz
buildroot-f694016136c155f23f5cec2eb7c076c9442d846a.zip
final step in buildroot facelift
Diffstat (limited to 'package/customize')
-rw-r--r--package/customize/Config.in8
-rw-r--r--package/customize/Makefile.in3
2 files changed, 11 insertions, 0 deletions
diff --git a/package/customize/Config.in b/package/customize/Config.in
new file mode 100644
index 000000000..700c9ffd9
--- /dev/null
+++ b/package/customize/Config.in
@@ -0,0 +1,8 @@
+#
+
+config BR2_PACKAGE_CUSTOMIZE
+ bool"customize"
+ default n
+ help
+ Add help text here.
+
diff --git a/package/customize/Makefile.in b/package/customize/Makefile.in
new file mode 100644
index 000000000..5a07dc777
--- /dev/null
+++ b/package/customize/Makefile.in
@@ -0,0 +1,3 @@
+ifeq ($(strip $(BR2_PACKAGE_CUSTOMIZE)),y)
+TARGETS+=customize
+endif