Changeset 05d97eef in mainline
- Timestamp:
- 2019-08-17T12:49:44Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 58ef532
- Parents:
- 6068476
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-07-21 12:32:55)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-08-17 12:49:44)
- Files:
-
- 2 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r6068476 r05d97eef 34 34 ERRNO_INPUT = abi/include/abi/errno.in 35 35 36 .PHONY: all cscope cscope_parts format ccheck ccheck-fix space doxy check_errno releasefile release36 .PHONY: nothing cscope cscope_parts format ccheck ccheck-fix space check_errno 37 37 38 all:38 nothing: 39 39 40 40 cscope: … … 61 61 tools/srepl '[ \t]\+$$' '' 62 62 63 doxy: $(BUILD_DIR)/build.ninja64 ninja -C $(BUILD_DIR) doxygen65 66 63 # `sed` pulls a list of "compatibility-only" error codes from `errno.in`, 67 64 # the following grep finds instances of those error codes in HelenOS code. … … 71 68 git grep -n -f - -- ':(exclude)abi' ':(exclude)uspace/lib/posix' 72 69 73 # Release files74 75 releasefile: all76 $(MAKE) -r -C release releasefile77 78 release:79 $(MAKE) -r -C release release80 81 70 $(ERRNO_HEADER): $(ERRNO_INPUT) 82 71 echo '/* Generated file. Edit errno.in instead. */' > $@.new -
meson/part/initrd/meson.build
r6068476 r05d97eef 11 11 install_deps += [ files(libgcc) ] 12 12 endif 13 14 # Collect and install copyright information. 15 copyrights_file = custom_target('COPYRIGHT', 16 output: 'COPYRIGHT', 17 command: cpc, 18 capture: true, 19 ) 20 21 install_files += [[ '', copyrights_file.full_path(), 'COPYRIGHT' ]] 22 install_deps += [ copyrights_file ] 13 23 14 24 # Emit the install script. -
meson/part/tools/meson.build
r6068476 r05d97eef 25 25 unzip = find_program('unzip') 26 26 which = find_program('which') 27 cpc = find_program(_tools_dir / 'cc.sh') 27 28 28 29 sh = [ find_program('sh'), '-u', '-e' ] -
tools/build_all.sh
r6068476 r05d97eef 32 32 33 33 CONFIG_RULES="${SOURCE_DIR}/HelenOS.config" 34 CONFIG_DEFAULTS="${SOURCE_DIR}/defaults"35 34 36 # Find all the leaf subdirectories in the defaults directory. 37 PROFILES=`find ${CONFIG_DEFAULTS} -type d -links 2 -printf "%P\n" | sort` 38 35 PROFILES=`sh ${SOURCE_DIR}/tools/list_profiles.sh` 39 36 40 37 echo
Note:
See TracChangeset
for help on using the changeset viewer.