将html文件从源目录复制到构建目录

时间:2015-01-14 00:41:17

标签: web gnu-make web-frontend

我正在为网站编写一个makefile。

我有一个名为src/build/

的目录

基本上,我想要这样的文件:

src/index.html
src/blog/title1/index.html
src/blog/title2/index.html

将它们复制到build/目录,如下所示:

build/index.html
build/blog/title1/index.html
build/blog/title2/index.html

我尝试编写规则,但我不确定如何调试它:

src_html := src/**/*.html
build_html := $(shell find src -name '*.html' | sed 's/src/build/')

$(src_html): $(build_html)
    @cp $< $@

3 个答案:

答案 0 :(得分:2)

如果安装了rsync,可以使用rsync。

default:
        rsync -r --include '*/' --include='*.html' --exclude='*' src/ build/

答案 1 :(得分:1)

尝试这样的事情:

#! /bin/bash

# get htm files
find . -name '*html' > files

# manipulate file location
sed 's/src/build/' files | paste files - > mapping

# handle spaces in the file names
sed 's/ /\\ /' mapping > files

# output mapping to be sure.
cat files
echo "Apply mapping?[Y/n]"
read reply
[[ $reply =~ [Yy].* ]] || exit 1
# copy files from column one to column two
awk '{ system("cp "$1" "$2)}' files

exit 0

修改

不等我有一个班轮:

$ find -name '*html' -exec bash -c 'file=$(echo {}); file=$(echo $file | sed "s:\/:\\\/:g"); cp "{}" $(echo ${file/src/build} | sed "s:\\\/:\/:g")' \;

答案 2 :(得分:1)

为了完整起见, make 可以使用静态模式规则处理这个问题:

src := src/index.html src/blog/title1/index.html src/blog/title2/index.html
# or src := $(shell find …) etc., but hopefully the makefile already has a list

dst := $(patsubst src/%,build/%,${src})
${dst}: build/%: src/% ; cp $< $@

.PHONY: all
all: ${dst}

这也是-j安全的,并且不会复制尚未更新的文件。