forked from egonw/chembl.rdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
49 lines (34 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
49
all: assays activities compounds targets docs
assays: assays.nt
activities: activities.nt activities_qudt.nt
compounds: compounds.nt compounds_labels.nt compounds_ls_ebi.nt compounds_properties.nt
targets: targets.nt targets_ls_bio2rdf.nt targets_ls_uniprot.nt
docs: docs.nt docs_ls_crossref.nt docs_ls_pubmed.nt
clean:
@rm compounds*.nt assays*.nt activities*.nt
assays.nt: assays.php
@php assays.php > assays.nt
activities.nt: activities.groovy
@groovy activities.groovy > activities.nt
activities_qudt.nt: activities_qudt.groovy
@groovy activities_qudt.groovy > activities_qudt.nt
compounds.nt: compounds.php
@php compounds.php > compounds.nt
compounds_properties.nt: compounds_properties.php
@php compounds_properties.php > compounds_properties.nt
compounds_labels.nt: compounds_labels.groovy
@groovy compounds_labels.groovy > compounds_labels.nt
compounds_ls_ebi.nt: compounds_ls_ebi.php
@php compounds_ls_ebi.php > compounds_ls_ebi.nt
targets.nt: targets.php
@php targets.php > targets.nt
targets_ls_bio2rdf.nt: targets_ls_bio2rdf.php
@php targets_ls_bio2rdf.php > targets_ls_bio2rdf.nt
targets_ls_uniprot.nt: targets_ls_uniprot.php
@php targets_ls_uniprot.php > targets_ls_uniprot.nt
docs.nt: docs.php
@php docs.php > docs.nt
docs_ls_crossref.nt: docs_ls_crossref.php
@php docs_ls_crossref.php > docs_ls_crossref.nt
docs_ls_pubmed.nt: docs_ls_pubmed.php
@php docs_ls_pubmed.php > docs_ls_pubmed.nt