- Timestamp:
- 2010-12-14T23:15:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7bdcc45, bbc74af7
- Parents:
- 228e490
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r228e490 reb221e5 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.