- Timestamp:
- 2010-01-15T18:30:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eeb643d
- Parents:
- 387416b (diff), 563d6077 (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
r387416b r99de22b 31 31 32 32 CSCOPE = cscope 33 STANSE = stanse 33 CONFIG = tools/config.py 34 34 35 .PHONY: all config config_default distclean clean cscope stanse35 .PHONY: all config config_default distclean clean cscope precheck 36 36 37 37 all: Makefile.config config.h config.defs 38 $(MAKE) -C kernel 39 $(MAKE) -C uspace 40 $(MAKE) -C boot 38 $(MAKE) -C kernel PRECHECK=$(PRECHECK) 39 $(MAKE) -C uspace PRECHECK=$(PRECHECK) 40 $(MAKE) -C boot PRECHECK=$(PRECHECK) 41 41 42 stanse: Makefile.config config.h config.defs 43 $(MAKE) -C kernel clean 44 $(MAKE) -C kernel EXTRA_TOOL=stanse 45 $(STANSE) --checker ReachabilityChecker --jobfile kernel/kernel.job 42 precheck: clean 43 $(MAKE) all PRECHECK=y 46 44 47 45 cscope: … … 55 53 56 54 config_default: HelenOS.config 57 tools/config.pyHelenOS.config default55 $(CONFIG) HelenOS.config default 58 56 59 57 config: HelenOS.config 60 tools/config.pyHelenOS.config58 $(CONFIG) HelenOS.config 61 59 62 60 distclean: clean
Note:
See TracChangeset
for help on using the changeset viewer.