Changeset 218e50c in mainline
- Timestamp:
- 2009-11-25T14:45:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a5a8ca7
- Parents:
- 656437a0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r656437a0 r218e50c 30 30 # 31 31 32 CSCOPE = cscope .out32 CSCOPE = cscope 33 33 STANSE = stanse 34 34 … … 46 46 47 47 cscope: 48 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs cscope -b -k -u -f$(CSCOPE)48 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out 49 49 50 50 Makefile.config: config_default … … 61 61 62 62 distclean: clean 63 rm -f $(CSCOPE) Makefile.config config.h config.defs tools/*.pyc63 rm -f $(CSCOPE).out Makefile.config config.h config.defs tools/*.pyc 64 64 65 65 clean: -
kernel/Makefile.build
r656437a0 r218e50c 91 91 ## Cross-platform assembly to start a symtab.data section 92 92 # 93 SYMTAB_SECTION =".section symtab.data, \"a\", $(ATSIGN)progbits;"93 SYMTAB_SECTION = ".section symtab.data, \"a\", $(ATSIGN)progbits;" 94 94 95 95 ## Simple detection for the type of the host system
Note:
See TracChangeset
for help on using the changeset viewer.