diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-06-06 13:00:47 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-06-06 13:00:47 +0000 |
commit | 98613649b4c7fac013aa5f8f69fc24b4f0aac605 (patch) | |
tree | acf19cbc1a292325f8a376333f1dfe9046195d01 /Makefile | |
parent | e39745b938898690ab77c0f2d52bf71f600f8229 (diff) | |
download | busybox-w32-98613649b4c7fac013aa5f8f69fc24b4f0aac605.tar.gz busybox-w32-98613649b4c7fac013aa5f8f69fc24b4f0aac605.tar.bz2 busybox-w32-98613649b4c7fac013aa5f8f69fc24b4f0aac605.zip |
Lets give this a try...
git-svn-id: svn://busybox.net/trunk/busybox@4868 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -160,21 +160,20 @@ $(TOPDIR)include/config.h: | |||
160 | fi; | 160 | fi; |
161 | 161 | ||
162 | $(TOPDIR).config: | 162 | $(TOPDIR).config: |
163 | cp $(TOPDIR)sysdeps/$(TARGET_OS)/defconfig $(TOPDIR).config | 163 | @if [ ! -f $(TOPDIR).config ] ; then \ |
164 | mkdir -p $(TOPDIR)include/config | 164 | cp $(TOPDIR)sysdeps/$(TARGET_OS)/defconfig $(TOPDIR).config; \ |
165 | $(MAKE) -C scripts/lxdialog all | 165 | fi; |
166 | $(BB_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in | ||
167 | 166 | ||
168 | menuconfig: | 167 | menuconfig: $(TOPDIR).config |
169 | mkdir -p $(TOPDIR)include/config | 168 | mkdir -p $(TOPDIR)include/config |
170 | $(MAKE) -C scripts/lxdialog all | 169 | $(MAKE) -C scripts/lxdialog all |
171 | $(BB_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in | 170 | $(BB_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in |
172 | 171 | ||
173 | config: | 172 | config: $(TOPDIR).config |
174 | mkdir -p $(TOPDIR)include/config | 173 | mkdir -p $(TOPDIR)include/config |
175 | $(BB_SHELL) scripts/Configure sysdeps/$(TARGET_OS)/config.in | 174 | $(BB_SHELL) scripts/Configure sysdeps/$(TARGET_OS)/config.in |
176 | 175 | ||
177 | oldconfig: | 176 | oldconfig: $(TOPDIR).config |
178 | mkdir -p $(TOPDIR)include/config | 177 | mkdir -p $(TOPDIR)include/config |
179 | $(BB_SHELL) scripts/Configure -d sysdeps/$(TARGET_OS)/config.in | 178 | $(BB_SHELL) scripts/Configure -d sysdeps/$(TARGET_OS)/config.in |
180 | 179 | ||