- Timestamp:
- 2010-03-18T23:34:00Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c80f2b
- Parents:
- 3ad309d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r3ad309d r177e4ea 32 32 CSCOPE = cscope 33 33 CONFIG = tools/config.py 34 SANITY = tools/sanity.py34 AUTOTOOL = tools/autotool.py 35 35 36 .PHONY: all config config_default distclean clean cscope precheck36 .PHONY: all precheck cscope autotool config_default config distclean clean 37 37 38 all: Makefile.config config.h config.defs 39 $(SANITY) 38 all: Makefile.common Makefile.config config.h config.defs 40 39 $(MAKE) -C kernel PRECHECK=$(PRECHECK) 41 40 $(MAKE) -C uspace PRECHECK=$(PRECHECK) … … 47 46 cscope: 48 47 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out 48 49 Makefile.common: autotool 50 51 autotool: Makefile.config 52 $(AUTOTOOL) 49 53 50 54 Makefile.config: config_default … … 61 65 62 66 distclean: clean 63 rm -f $(CSCOPE).out Makefile.co nfig config.h config.defs tools/*.pyc tools/checkers/*.pyc67 rm -f $(CSCOPE).out Makefile.common Makefile.config config.h config.defs tools/*.pyc tools/checkers/*.pyc 64 68 65 69 clean:
Note:
See TracChangeset
for help on using the changeset viewer.