You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
710 B
Makefile
20 lines
710 B
Makefile
all: clean cnpl npl cnpl-na npl-na
|
|
|
|
cnpl:
|
|
xml ed -d "/article/info" template.xml | pandoc -f docbook -t markdown -s -o cnpl.md
|
|
|
|
nvpl:
|
|
xml ed -d "/article/info" template.xml | xml ed -d "*/*/*[@role='restriction-cooperative']" | pandoc -f docbook -t markdown -s -o nvpl.md
|
|
|
|
cnpl-na:
|
|
xml ed -d "/article/info" template.xml | xml ed -d "*/*/*[@role='restriction-attribution']" | pandoc -f docbook -t markdown -s -o cnpl-na.md
|
|
|
|
nvpl-na:
|
|
xml ed -d "/article/info" template.xml | xml ed -d "*/*/*[@role='restriction-attribution']" | xml ed -d "*/*/*[@role='restriction-cooperative']" | pandoc -f docbook -t markdown -s -o nvpl-na.md
|
|
|
|
clean:
|
|
rm -rf nvpl.md
|
|
rm -rf cnpl.md
|
|
rm -rf cnpl-na.md
|
|
rm -rf nvpl-na.md
|