contacts-pane
Version:
Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.
20 lines (12 loc) • 631 B
Plain Text
# Wrap TTL files into JS files for bundling with library
,all : lib/forms.js lib/vcard.js lib/instituteDetailsQuery.js
lib/forms.js : src/forms.ttl
(echo 'module.exports = `' ; cat $< ; echo '`') > $@
#organizationForm.js : organizationForm.ttl
# (echo 'module.exports = `' ; cat organizationForm.ttl; echo '`') > organizationForm.js
src/vcard.ttl:
curl http://www.w3.org/2006/vcard/ns > src/vcard.ttl
lib/vcard.js : src/vcard.ttl
(echo 'module.exports = `' ; cat $< ; echo '`') > $@
lib/instituteDetailsQuery.js : src/instituteDetailsQuery.sparql
(echo 'module.exports = `' ; cat $< ; echo '`') > $@