-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
74 lines (52 loc) · 1.54 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
# Avoid findlib warnings about duplicated cmi
export OCAMLFIND_IGNORE_DUPS_IN=compiler/typing/
# OASIS_START
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)
SETUP = ocaml setup.ml
build: setup.data
$(SETUP) -build $(BUILDFLAGS)
doc: setup.data build
$(SETUP) -doc $(DOCFLAGS)
test: setup.data build
$(SETUP) -test $(TESTFLAGS)
all:
$(SETUP) -all $(ALLFLAGS)
install: setup.data
$(SETUP) -install $(INSTALLFLAGS)
uninstall: setup.data
$(SETUP) -uninstall $(UNINSTALLFLAGS)
reinstall: setup.data
$(SETUP) -reinstall $(REINSTALLFLAGS)
clean:
$(SETUP) -clean $(CLEANFLAGS)
distclean:
$(SETUP) -distclean $(DISTCLEANFLAGS)
setup.data:
$(SETUP) -configure $(CONFIGUREFLAGS)
configure:
$(SETUP) -configure $(CONFIGUREFLAGS)
.PHONY: build doc test all install uninstall reinstall clean distclean configure
# OASIS_STOP
NAME = $(shell grep 'Name:' _oasis | sed 's/Name: *//')
VERSION = $(shell grep 'Version:' _oasis | sed 's/Version: *//')
ARCHIVE = https://github.com/Drup/$(NAME)/archive/$(VERSION).tar.gz
# doc update
doc/html/.git:
mkdir -p doc/html
cd doc/html && (\
git init && \
git remote add origin [email protected]:Drup/$(NAME).git && \
git checkout -b gh-pages \
)
gh-pages: doc/html/.git
cd doc/html && git checkout gh-pages
rm -f doc/html/*.html
cp $(NAME).docdir/*.html doc/html/
cd doc/html && git add *.html
cd doc/html && git commit -a -m "Doc updates"
cd doc/html && git push origin gh-pages
# release
release:
git tag -a $(VERSION) -m "Version $(VERSION)."
git push upstream $(VERSION)
$(MAKE) pr