Skip to content

Commit 5345be3

Browse files
committed
release/Makefile: add CHANGELOG.md to the release zip file
1 parent 00d7909 commit 5345be3

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

release/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.pdf
22
*.gif
33
*.zip
4+
CHANGELOG.md

release/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
TARGETS := README.pdf \
2323
USER_GUIDE.pdf \
24+
CHANGELOG.md \
2425
rpn83p.8xk \
2526
rpn83p-example1.gif \
2627
rpn83p-example2.gif
@@ -43,6 +44,11 @@ USER_GUIDE.pdf: ../USER_GUIDE.md Makefile
4344
pandoc -V geometry:margin=1in -V fontsize=12pt -f gfm -s -o $@ USER_GUIDE.md; \
4445
mv -f $@ release)
4546

47+
# Copy the CHANGELOG.md as is, without conversion to PDF. It's just a text
48+
# file without any embedded images.
49+
CHANGELOG.md: ../CHANGELOG.md Makefile
50+
cp -f $< $@
51+
4652
# Copy to local directory to place it at top level in the zip file.
4753
rpn83p.8xk: ../src/rpn83p.8xk
4854
cp -f $< $@

0 commit comments

Comments
 (0)