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 6fb1747 commit 8c94fadCopy full SHA for 8c94fad
Makefile
@@ -1,8 +1,7 @@
1
all:
2
@./build/build.sh
3
init:
4
- @git submodule update;cd build/marked;make;
5
-
+ @./build/init.sh
6
7
clean:
8
@rm *.html
build/build.sh
@@ -1,8 +1,8 @@
#!/bin/sh
set -eu
-export repo_directory=$HOME/r-webdev
-export marked_exec=$HOME/r-webdev/build/marked/bin/marked
+export repo_directory='./'
+export marked_exec=./build/marked/bin/marked
find $repo_directory -name \*.md -print0|
xargs -0 -n1 $repo_directory/build/compile_page.sh
build/init.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -eux
+git submodule init
+git submodule update
+cd build/marked
+make
+
0 commit comments