We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d7909 commit 5345be3Copy full SHA for 5345be3
release/.gitignore
@@ -1,3 +1,4 @@
1
*.pdf
2
*.gif
3
*.zip
4
+CHANGELOG.md
release/Makefile
@@ -21,6 +21,7 @@
21
22
TARGETS := README.pdf \
23
USER_GUIDE.pdf \
24
+CHANGELOG.md \
25
rpn83p.8xk \
26
rpn83p-example1.gif \
27
rpn83p-example2.gif
@@ -43,6 +44,11 @@ USER_GUIDE.pdf: ../USER_GUIDE.md Makefile
43
44
pandoc -V geometry:margin=1in -V fontsize=12pt -f gfm -s -o $@ USER_GUIDE.md; \
45
mv -f $@ release)
46
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
+
52
# Copy to local directory to place it at top level in the zip file.
53
rpn83p.8xk: ../src/rpn83p.8xk
54
cp -f $< $@
0 commit comments