diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 23:12:32 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 23:12:32 +0100 |
commit | 23251c0c6ee9f7c0d3c4b20a5db9f51b4a0cc361 (patch) | |
tree | 1733ae79f43339c477e22184105194f37cef39df /mk | |
parent | 5bfdfbcee97c930c3c14dc3745089ac28e76ca41 (diff) |
fix some bugs, when starting with fresh checkout
Diffstat (limited to 'mk')
-rw-r--r-- | mk/build.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/build.mk b/mk/build.mk index 4c563a38c..4bc23cc32 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -539,15 +539,15 @@ bulkallmod: ${TOPDIR}/bin/tools/pkgmaker: @mkdir -p $(TOPDIR)/bin/tools - @$(HOSTCC) -g -o $@ tools/adk/pkgmaker.c tools/adk/sortfile.c tools/adk/strmap.c + @$(HOSTCC) -Wall -g -o $@ tools/adk/pkgmaker.c tools/adk/sortfile.c tools/adk/strmap.c ${TOPDIR}/bin/tools/pkgrebuild: @mkdir -p $(TOPDIR)/bin/tools - @$(HOSTCC) -g -o $@ tools/adk/pkgrebuild.c tools/adk/strmap.c + @$(HOSTCC) -Wall -g -o $@ tools/adk/pkgrebuild.c tools/adk/strmap.c package/Config.in.auto menu .menu: $(wildcard ${TOPDIR}/package/*/Makefile) ${TOPDIR}/bin/tools/pkgmaker ${TOPDIR}/bin/tools/pkgrebuild @echo "Generating menu structure ..." - @$(TOPDIR)/bin/tools/pkgmaker + $(TOPDIR)/bin/tools/pkgmaker @:>.menu $(TOPDIR)/bin/tools: |