Changeset e28175d in mainline for meson/arch/riscv64/meson.build
- Timestamp:
- 2020-03-15T10:44:02Z (6 years ago)
- Parents:
- b401b33 (diff), 44dde42 (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. - git-author:
- heiducteam <tristanided@…> (2020-03-15 10:44:02)
- git-committer:
- GitHub <noreply@…> (2020-03-15 10:44:02)
- File:
-
- 1 moved
-
meson/arch/riscv64/meson.build (moved) (moved from doxygen/Makefile ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/riscv64/meson.build
rb401b33 re28175d 1 1 # 2 # Copyright (c) 201 7 Jiri Svoboda2 # Copyright (c) 2019 Jiří Zárevúcky 3 3 # All rights reserved. 4 4 # … … 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 arch_uspace_c_args = [ '-D__LE__', '-fno-omit-frame-pointer' ] 30 arch_kernel_c_args = arch_uspace_c_args + [ '-mcmodel=medany' ] 31 arch_boot_c_args = arch_kernel_c_args 32 arch_kernel_link_args = [ '-nostdlib' ] 33 arch_uspace_link_args = [ '-nostdlib', '-lgcc' ] 34 arch_boot_link_args = [] 33 35 34 all: doxygen.cfg 35 doxygen $^ 36 37 clean: 38 rm -f $(gen_cfg) $(cfg_file) 39 rm -rf $(output_dirs) 40 41 $(cfg_file): $(gen_cfg) 42 cp $^ $@ 43 patch $@ $(patch_file) 44 45 $(gen_cfg): 46 doxygen -g $@ 36 rd_essential += [ 37 ]
Note:
See TracChangeset
for help on using the changeset viewer.
