3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-04 16:44:08 +00:00

Merge pull request #4939 from DanielG/rsync-fallback

mk: Fall back to cp if rsync is not available
This commit is contained in:
KrystalDelusion 2025-03-25 10:41:27 +13:00 committed by GitHub
commit cce7aaedf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 3 deletions

View file

@ -114,6 +114,12 @@ BISON ?= bison
STRIP ?= strip STRIP ?= strip
AWK ?= awk AWK ?= awk
ifneq ($(shell :; command -v rsync),)
RSYNC_CP ?= rsync -rc
else
RSYNC_CP ?= cp -ru
endif
ifeq ($(OS), Darwin) ifeq ($(OS), Darwin)
PLUGIN_LINKFLAGS += -undefined dynamic_lookup PLUGIN_LINKFLAGS += -undefined dynamic_lookup
LINKFLAGS += -rdynamic LINKFLAGS += -rdynamic
@ -1007,13 +1013,13 @@ docs/source/cmd/abc.rst: $(TARGETS) $(EXTRA_TARGETS)
$(Q) mkdir -p docs/source/cmd $(Q) mkdir -p docs/source/cmd
$(Q) mkdir -p temp/docs/source/cmd $(Q) mkdir -p temp/docs/source/cmd
$(Q) cd temp && ./../$(PROGRAM_PREFIX)yosys -p 'help -write-rst-command-reference-manual' $(Q) cd temp && ./../$(PROGRAM_PREFIX)yosys -p 'help -write-rst-command-reference-manual'
$(Q) rsync -rc temp/docs/source/cmd docs/source $(Q) $(RSYNC_CP) temp/docs/source/cmd docs/source
$(Q) rm -rf temp $(Q) rm -rf temp
docs/source/cell/word_add.rst: $(TARGETS) $(EXTRA_TARGETS) docs/source/cell/word_add.rst: $(TARGETS) $(EXTRA_TARGETS)
$(Q) mkdir -p docs/source/cell $(Q) mkdir -p docs/source/cell
$(Q) mkdir -p temp/docs/source/cell $(Q) mkdir -p temp/docs/source/cell
$(Q) cd temp && ./../$(PROGRAM_PREFIX)yosys -p 'help -write-rst-cells-manual' $(Q) cd temp && ./../$(PROGRAM_PREFIX)yosys -p 'help -write-rst-cells-manual'
$(Q) rsync -rc temp/docs/source/cell docs/source $(Q) $(RSYNC_CP) temp/docs/source/cell docs/source
$(Q) rm -rf temp $(Q) rm -rf temp
docs/source/generated/cells.json: docs/source/generated $(TARGETS) $(EXTRA_TARGETS) docs/source/generated/cells.json: docs/source/generated $(TARGETS) $(EXTRA_TARGETS)

View file

@ -3,6 +3,12 @@ all: examples all_tex
# set a fake time in pdf generation to prevent unnecessary differences in output # set a fake time in pdf generation to prevent unnecessary differences in output
FAKETIME := TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001' FAKETIME := TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001'
ifneq ($(shell :; command -v rsync),)
RSYNC_CP ?= rsync -t
else
RSYNC_CP ?= cp -a
endif
# find all code example makefiles # find all code example makefiles
.PHONY: examples .PHONY: examples
CODE_EXAMPLES := ../code_examples/*/Makefile CODE_EXAMPLES := ../code_examples/*/Makefile
@ -19,7 +25,7 @@ FORCE:
../%/Makefile: FORCE ../%/Makefile: FORCE
@make -C $(@D) dots @make -C $(@D) dots
@mkdir -p $* @mkdir -p $*
@find $(@D) -name *.dot -exec rsync -t {} $* \; @find $(@D) -name *.dot -exec $(RSYNC_CP) {} $* \;
# find and build all tex files # find and build all tex files
.PHONY: all_tex .PHONY: all_tex