diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2024-02-05 16:08:07 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2024-02-26 16:33:21 +0700 |
commit | 2224c1e68510a9eb5152c6941afed203a32596b1 (patch) | |
tree | c5d000eb789917c610684a11d21883fabe36a432 /Makefile | |
parent | edfc4136bf12cdd7e1691d795a3d6ff9ba313c27 (diff) | |
download | blog-2224c1e68510a9eb5152c6941afed203a32596b1.tar.gz |
Install only necessary files for CV
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile index b3aa716..7099ce8 100644 --- a/Makefile +++ b/Makefile @@ -29,10 +29,11 @@ ${BUILD_CONLANGS}: build-%: build: dotnet dotgeek ${BUILD_CONLANGS} ${PACKAGE_CONLANGS}: package-%: build - cp -r $*/book dotnet/$*; - cp -r $*/book dotgeek/$*; + cp -r $*/book dotnet/$* + cp -r $*/book dotgeek/$* package-cv: dotnet dotgeek cv - cp -r web-cv dotnet/cv - cp -r web-cv dotgeek/cv + mkdir {dotnet,dotgeek}/cv; + cp web-cv/{index.html,style.css,work-cv.pdf} dotnet/cv + cp web-cv/{index.html,style.css,work-cv.pdf} dotgeek/cv |