- Timestamp:
- 2010-12-16T16:38:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r8e58f94 r7bdcc45 28 28 29 29 CSCOPE = cscope 30 CHECK = tools/check.sh 30 31 CONFIG = tools/config.py 31 32 AUTOTOOL = tools/autotool.py … … 41 42 CONFIG_HEADER = config.h 42 43 43 .PHONY: all precheck cscope autotool config_ default config distclean clean44 .PHONY: all precheck cscope autotool config_auto config_default config distclean clean check 44 45 45 46 all: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) … … 55 56 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out 56 57 58 # Pre-integration build check 59 check: $(CHECK) 60 ifdef JOBS 61 $(CHECK) -j $(JOBS) 62 else 63 $(CHECK) 64 endif 65 57 66 $(COMMON_MAKEFILE): autotool 58 67 $(COMMON_HEADER): autotool … … 66 75 67 76 config_default: $(CONFIG_RULES) 68 $(CONFIG) $< default 77 ifeq ($(HANDS_OFF),y) 78 $(CONFIG) $< hands-off $(PROFILE) 79 else 80 $(CONFIG) $< default $(PROFILE) 81 endif 69 82 70 83 config: $(CONFIG_RULES)
Note:
See TracChangeset
for help on using the changeset viewer.