Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.

Commit 4dfecc9

Browse files
committed
Fix the make assemble target.
It should actually assemble the docs, not echo the command...
1 parent 8318ce1 commit 4dfecc9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ validate:
1010
done; \
1111
@echo success
1212

13-
assemble:
14-
echo mdoc assemble -o MonoAndroid-lib $(wildcard docs/*/en)
13+
assemble: MonoAndroid-lib.zip
14+
15+
MonoAndroid-lib.tree: docs/MonoAndroid-lib.zip
16+
MonoAndroid-lib.zip:
17+
mdoc --debug assemble -o MonoAndroid-lib $(wildcard docs/*/en)
1518

1619
install: MonoAndroid-lib.tree MonoAndroid-lib.zip
1720
cp $^ /Library/Frameworks/Mono.framework/External/monodoc/

0 commit comments

Comments
 (0)