aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-28 14:04:43 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-28 14:04:43 +0200
commit39d8191614e4a603868b5d34b11145e836e1477e (patch)
tree20c069279816957db77526bef97c8467988282a0 /Makefile
parent9fd9afdfd59cf778e64da865361158278ebc6358 (diff)
downloadlinux-conf-perf-39d8191614e4a603868b5d34b11145e836e1477e.tar.gz
linux-conf-perf-39d8191614e4a603868b5d34b11145e836e1477e.tar.bz2
linux-conf-perf-39d8191614e4a603868b5d34b11145e836e1477e.zip
Fix run and initram dependency
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 56ecb78..906a187 100644
--- a/Makefile
+++ b/Makefile
@@ -44,8 +44,8 @@ deflinux:
test: $(INITRAM) parse_kconfig
scripts/test.py
-run: kconfig_parser write_config $(INITRAM)
- scripts/main_loop.py
+run: parse_kconfig write_config $(INITRAM)
+ scripts/loop.py
evaluate:
@ #TODO
@@ -95,7 +95,7 @@ $(BUILDROOT_INITRAM): scripts/buildroot/.config scripts/buildroot/system/skeleto
$(INITRAM): build
$(INITRAM): $(BUILDROOT_INITRAM)
- mv $< $@
+ cp $< $@
scripts/buildroot/.config:
cp $(BUILDROOT_DEF_CONFIG) $@