- Timestamp:
- 2011-01-08T18:51:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 15be932
- Parents:
- 8f748215 (diff), a523af4 (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
r8f748215 r93fb170c 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_auto config_default config distclean clean 44 .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) … … 54 55 cscope: 55 56 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out 57 58 # Pre-integration build check 59 check: $(CHECK) 60 ifdef JOBS 61 $(CHECK) -j $(JOBS) 62 else 63 $(CHECK) 64 endif 56 65 57 66 $(COMMON_MAKEFILE): autotool
Note:
See TracChangeset
for help on using the changeset viewer.