forked from apparentlymart/activity-streams-specs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
40 lines (25 loc) · 1.22 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
all: atomactivity.html atomactivity.txt activityschema.html activityschema.txt serviceprovidermeta.html serviceprovidermeta.txt commentmeta.html commentmeta.txt activitypush.html jsonactivity.html
clean:
rm -rf build
prepare:
mkdir -p build
atomactivity.html: prepare atomactivity.xml
xml2rfc atomactivity.xml build/atomactivity.html
atomactivity.txt: prepare atomactivity.xml
xml2rfc atomactivity.xml build/atomactivity.txt
activityschema.html: prepare activityschema.xml
xml2rfc activityschema.xml build/activityschema.html
activityschema.txt: prepare activityschema.xml
xml2rfc activityschema.xml build/activityschema.txt
serviceprovidermeta.html: prepare serviceprovidermeta.xml
xml2rfc serviceprovidermeta.xml build/serviceprovidermeta.html
serviceprovidermeta.txt: prepare serviceprovidermeta.xml
xml2rfc serviceprovidermeta.xml build/serviceprovidermeta.txt
commentmeta.html: prepare commentmeta.xml
xml2rfc commentmeta.xml build/commentmeta.html
commentmeta.txt: prepare commentmeta.xml
xml2rfc commentmeta.xml build/commentmeta.txt
activitypush.html: prepare activitypush.xml
xml2rfc activitypush.xml build/activitypush.html
jsonactivity.html: prepare jsonactivity.xml
xml2rfc jsonactivity.xml build/jsonactivity.html