diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-30 00:58:18 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-30 00:58:18 +0000 |
commit | 8d583fc01a44c04c1872b2c6144a221df30ee78d (patch) | |
tree | 5a1671d08b60c20443e08f0bc4fd682a6dc20185 /Makefile | |
parent | 55c11889ab550df33ec6db10416cc98aeb0fa442 (diff) | |
download | buildroot-novena-8d583fc01a44c04c1872b2c6144a221df30ee78d.tar.gz buildroot-novena-8d583fc01a44c04c1872b2c6144a221df30ee78d.zip |
- generalize the menuconfig linux kernel support
- simplify toplevel mkdir rules a tiny bit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -88,14 +88,8 @@ dirs: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) # dependencies anywhere else # ############################################################# -$(DL_DIR): - @mkdir -p $(DL_DIR) - -$(BUILD_DIR): - @mkdir -p $(BUILD_DIR) - -$(TOOL_BUILD_DIR): - @mkdir -p $(TOOL_BUILD_DIR) +$(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR): + @mkdir -p $@ $(STAGING_DIR): @mkdir -p $(STAGING_DIR)/lib |