Changeset e503cea9 in mainline
- Timestamp:
- 2019-08-17T12:49:43Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92fff0c
- Parents:
- 1783f75
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-29 14:30:56)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-08-17 12:49:43)
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r1783f75 re503cea9 66 66 endif 67 67 68 .PHONY: all precheck cscope cscope_parts config_default config distclean clean check releasefile release meson export-posixspace68 .PHONY: all precheck cscope cscope_parts config_default config distclean clean check releasefile release meson space 69 69 70 70 all: meson … … 110 110 tools/srepl '[ \t]\+$$' '' 111 111 112 doxy: 113 $(MAKE) -r -Cdoxygen112 doxy: $(BUILD_DIR)/build.ninja 113 ninja -C $(BUILD_DIR) doxygen 114 114 115 115 # Pre-integration build check -
doxygen/meson.build
r1783f75 re503cea9 27 27 # 28 28 29 cfg_file = doxygen.cfg 30 gen_cfg = doxygen.cfg.gen 31 patch_file = doxygen.cfg.diff 32 output_dirs = latex html 29 doxygen = find_program('doxygen') 30 patch = find_program('patch') 31 patch_file = files('doxygen.cfg.diff') 33 32 34 all: doxygen.cfg35 doxygen $^36 33 37 clean: 38 rm -f $(gen_cfg) $(cfg_file) 39 rm -rf $(output_dirs) 34 gen_cfg = custom_target('doxygen.cfg.gen', 35 output: 'doxygen.cfg.gen', 36 command: [ doxygen, '-g', '@OUTPUT@' ], 37 ) 40 38 41 $(cfg_file): $(gen_cfg) 42 cp $^ $@ 43 patch $@ $(patch_file) 39 dox_cfg = custom_target('doxygen.cfg', 40 output: 'doxygen.cfg', 41 input: [ gen_cfg, patch_file ], 42 command: [ patch, '-o', '@OUTPUT@', '@INPUT@' ], 43 ) 44 44 45 $(gen_cfg): 46 doxygen -g $@ 45 run_target('doxygen', command: [ doxygen, dox_cfg ]) -
meson.build
r1783f75 re503cea9 11 11 meson_version: '>=0.50.1', 12 12 ) 13 14 subdir('doxygen') 13 15 14 16 cc = meson.get_compiler('c')
Note:
See TracChangeset
for help on using the changeset viewer.