-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
176 lines (129 loc) · 4.71 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#############################################################################
# Configuration section
#############################################################################
-include Makefile.config
##############################################################################
# Variables
##############################################################################
TOP=$(shell pwd)
SRC=\
main.ml \
TARGET=find-dupe
PROGS=$(TARGET)
OPTPROGS= $(PROGS:=.opt)
#------------------------------------------------------------------------------
SUBDIRS=commons
MAKESUBDIRS= $(XXXDIR) $(SUBDIRS)
INCLUDEDIRS=$(SUBDIRS:%=%)
LIBS= $(SUBDIRS:%=%/lib.cma)
SYSLIBS=str.cma unix.cma bigarray.cma $(XXXSYSCMA)
##############################################################################
# Generic
##############################################################################
-include $(TOP)/Makefile.common
##############################################################################
# Top rules
##############################################################################
.PHONY:: all all.opt opt top clean distclean
#note: old: was before all: rec $(EXEC) ... but can not do that cos make -j20
#could try to compile $(EXEC) before rec. So here force sequentiality.
all:: Makefile.config
$(MAKE) rec
$(MAKE) $(PROGS)
opt:
$(MAKE) rec.opt
$(MAKE) $(OPTPROGS)
all.opt: opt
top: $(TARGET).top
rec:
$(XXXCMD)
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i all || exit 1; done
rec.opt:
$(XXXCMDOPT)
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i all.opt || exit 1; done
$(TARGET): $(LIBS) $(OBJS)
$(OCAMLC) $(BYTECODE_STATIC) -o $@ $(SYSLIBS) $^
$(TARGET).opt: $(LIBS:.cma=.cmxa) $(OPTOBJS)
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
$(TARGET).top: $(LIBS) $(OBJS)
$(OCAMLMKTOP) -o $@ $(SYSLIBS) $^
clean::
rm -f $(TARGET) $(TARGET).opt $(TARGET).top
clean::
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i clean; done
depend::
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i depend; done
Makefile.config:
@echo "Makefile.config is missing. Have you run ./configure?"
@exit 1
distclean:: clean
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i $@; done
rm -f .depend
rm -f Makefile.config
rm -f globals/config.ml
rm -f TAGS
# find -name ".#*1.*" | xargs rm -f
static:
rm -f $(EXEC).opt $(EXEC)
$(MAKE) STATIC="-ccopt -static" $(EXEC).opt
cp $(EXEC).opt $(EXEC)
purebytecode:
rm -f $(EXEC).opt $(EXEC)
$(MAKE) BYTECODE_STATIC="" $(EXEC)
##############################################################################
# Build documentation
##############################################################################
.PHONY:: docs
##############################################################################
# Install
##############################################################################
# note: don't remove DESTDIR, it can be set by package build system like ebuild
install: all
cp syncweb $(BINDIR)
cp scripts/noweblatex $(BINDIR)
@echo ""
@echo "You can also install syncweb by copying the program"
@echo "(available in this directory) anywhere you want and"
uninstall:
rm -f $(BINDIR)/syncweb
rm -f $(BINDIR)/scripts/noweblatex
version:
@echo $(VERSION)
##############################################################################
# Package rules
##############################################################################
PACKAGE=syncweb-$(VERSION)
TMP=/tmp
package:
make srctar
srctar:
make clean
cp -a . $(TMP)/$(PACKAGE)
cd $(TMP); tar cvfz $(PACKAGE).tgz --exclude=CVS --exclude=_darcs $(PACKAGE)
rm -rf $(TMP)/$(PACKAGE)
# for the demo in mapreduce/, see the mapreduce/Makefile which produces
# the pdf, distribution_test, Makefile.test, etc
##############################################################################
# Website rules
##############################################################################
WEBSITE=/home/pad/mobile/homepage/software/project-syncweb
gen-html:
emacs -l ~/.emacs --eval "(progn (htmlize-many-files '(\"changes.txt\")) (kill-emacs))"
website:
cp $(TMP)/$(PACKAGE).tgz $(WEBSITE)
cp readme.txt $(WEBSITE)
cp changes.txt $(WEBSITE)
make gen-html
cp changes.txt.html $(WEBSITE)/changes-$(VERSION).html
##############################################################################
# Developer rules
##############################################################################
#VCS related
#test related
visual:
~/pfff/codemap -no_legend -profile -ss 2 -filter pfff .
graph:
~/pfff/codegraph -lang cmt -derived_data -build .
##############################################################################
# Pad specific rules
##############################################################################