forked from ome/ome-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
86 lines (62 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
IMAGESDIR=images/
BASEDIR=$(CURDIR)
OUTPUTDIR=$(BASEDIR)/output
CONTENTDIR=$(BASEDIR)/content
omero: gen
omerova: omerovagen
bf: bfgen
bfcpp: bfcppgen
figure: figuregen
flimfit: flimfitgen
searcher: searchergen
utrack: utrackgen
mtools: mtoolsgen
webtagging: webtagginggen
ice: icegen
gen:
mkdir -p $(CONTENTDIR)
python gen.py $(RELEASE) $(OMERO_BUILD) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
omerovagen:
mkdir -p $(CONTENTDIR)
python omerovagen.py $(RELEASE) $(BUILD) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
bfgen:
mkdir -p $(CONTENTDIR)
python bfgen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
bfcppgen:
mkdir -p $(CONTENTDIR)
python bfcppgen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
figuregen:
mkdir -p $(CONTENTDIR)
python figuregen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
flimfitgen:
mkdir -p $(CONTENTDIR)
python flimfitgen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
searchergen:
mkdir -p $(CONTENTDIR)
python searchergen.py $(RELEASE) $(PYSLIDVERSION) $(RICERCAVERSION) $(BUILDNUM) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
utrackgen:
mkdir -p $(CONTENTDIR)
python utrackgen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
mtoolsgen:
mkdir -p $(CONTENTDIR)
python mtoolsgen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
webtagginggen:
mkdir -p $(CONTENTDIR)
python webtagginggen.py $(RELEASE) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
icegen:
mkdir -p $(CONTENTDIR)
python icegen.py $(RELEASE) $(ICE_BUILD) $(SOURCE_SUFFIX) > $(CONTENTDIR)/index.html
cp -r $(IMAGESDIR) $(CONTENTDIR)
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
.PHONY: html help clean regenerate serve devserver publish ssh_upload rsync_upload dropbox_upload ftp_upload s3_upload cf_upload github