[Cryptech-Commits] [user/sra/pelican] 05/68: First cut at Makefile
git at cryptech.is
git at cryptech.is
Mon Jul 19 22:24:44 UTC 2021
This is an automated email from the git hooks/post-receive script.
sra at hactrn.net pushed a commit to branch pelican
in repository user/sra/pelican.
commit 9f57412eb63704a79c1b1ce18722204f1ef9ab64
Author: Rob Austein <sra at hactrn.net>
AuthorDate: Tue Mar 19 16:33:40 2019 +0000
First cut at Makefile
---
Makefile | 11 +++++++++++
tools/trac2md.py | 0
2 files changed, 11 insertions(+)
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6a93ff2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+TRAC := $(shell find raw-wiki-dump -type f -name '*.trac')
+MD := ${TRAC:.trac=.md}
+TOOL := tools/trac2md.py
+
+all: ${MD}
+
+clean:
+ rm ${MD}
+
+%.md: %.trac
+ ${TOOL} $<
diff --git a/tools/trac2md.py b/tools/trac2md.py
old mode 100644
new mode 100755
More information about the Commits
mailing list