forked from semgrep/pfff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.old
511 lines (434 loc) · 15.8 KB
/
Makefile.old
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
#You should use dune build instead of this old Makefile to build pfff
#############################################################################
# Configuration section
#############################################################################
-include Makefile.config
##############################################################################
# Variables
##############################################################################
TOP:=$(shell pwd)
SRC=
TARGET=pfff
OPAMPKG=pfff
#------------------------------------------------------------------------------
# Program related variables
#------------------------------------------------------------------------------
PROGS=pfff \
stags \
codequery \
codeslicer \
pfff_db \
pfff_test
OPTPROGS= $(PROGS:=.opt)
# not a configuration option anymore; used by too many things
JSONCMA=external/deps-netsys/netsys_oothr.cma external/deps-netsys/netsys.cma\
external/deps-netstring/netstring.cma\
external/json-wheel/jsonwheel.cma
# could be FEATURE_OCAMLGRAPH, or should give dependencies between features
GRAPHCMA=external/ocamlgraph/graph.cma commons_wrappers/graph/lib.cma
GRAPHDIRS=commons_wrappers/graph
#------------------------------------------------------------------------------
# Main variables
#------------------------------------------------------------------------------
SYSLIBS=bigarray.cma str.cma unix.cma
SYSLIBS+=$(OCAMLCOMPILERCMA)
#old: I used to have a BASICLIBS for small pfff utilities and LIBS for
# the rest but now that codemap/codegraph are out of this repository, there
# is less of a need to have BASICLIBS
LIBS= commons/lib.cma \
commons_core/lib.cma \
commons_ocollection/lib.cma \
$(JSONCMA) \
$(GRAPHCMA) \
$(EXTLIBCMA) $(PTCMA) $(ZIPCMA) $(JAVALIBCMA)\
external/dyp/dyp.cma \
external/ppx_deriving/ppx_deriving_runtime.cma \
external/uucp/uucp.cma \
external/uutf/uutf.cma \
globals/lib.cma \
h_files-format/lib.cma \
h_program-lang/lib.cma \
h_visualization/lib.cma \
graph_code/lib.cma \
lang_ml/parsing/lib.cma \
lang_ml/analyze/lib.cma \
lang_skip/parsing/lib.cma \
lang_skip/analyze/lib.cma \
lang_nw/parsing/lib.cma \
lang_nw/analyze/lib.cma \
lang_lisp/parsing/lib.cma \
lang_lisp/analyze/lib.cma \
lang_haskell/parsing/lib.cma \
lang_haskell/analyze/lib.cma \
lang_php/parsing/lib.cma \
lang_php/analyze/foundation/lib.cma \
lang_php/analyze/tools/lib.cma \
lang_php/analyze/checker/lib.cma \
lang_php/analyze/qa_test/lib.cma \
lang_php/analyze/visual/lib.cma \
lang_php/analyze/lib.cma \
lang_php/pretty/lib.cma \
lang_sql/parsing/lib.cma \
lang_js/parsing/lib.cma \
lang_js/analyze/lib.cma \
lang_json/parsing/lib.cma \
lang_cpp/parsing/lib.cma \
lang_cpp/analyze/lib.cma \
lang_c/parsing/lib.cma \
lang_c/analyze/lib.cma \
lang_java/parsing/lib.cma \
lang_java/analyze/lib.cma \
lang_python/parsing/lib.cma \
lang_python/analyze/lib.cma \
lang_go/parsing/lib.cma \
lang_go/analyze/lib.cma \
lang_csharp/parsing/lib.cma \
lang_csharp/analyze/lib.cma \
lang_rust/parsing/lib.cma \
lang_rust/analyze/lib.cma \
lang_erlang/parsing/lib.cma \
lang_erlang/analyze/lib.cma \
lang_text/lib.cma \
lang_html/parsing/lib.cma \
lang_html/analyze/lib.cma \
lang_css/parsing/lib.cma \
lang_web/parsing/lib.cma \
lang_ruby/parsing/lib.cma \
lang_ruby/analyze/lib.cma \
lang_GENERIC/parsing/lib.cma \
lang_GENERIC/analyze/lib.cma \
lang_FUZZY/parsing/lib.cma \
MAKESUBDIRS=commons commons_ocollection commons_core \
$(GRAPHDIRS) \
globals \
h_visualization \
h_files-format \
h_program-lang \
graph_code \
lang_ml/parsing \
lang_ml/analyze \
lang_skip/parsing \
lang_skip/analyze \
lang_nw/parsing \
lang_nw/analyze \
lang_lisp/parsing \
lang_lisp/analyze \
lang_haskell/parsing \
lang_haskell/analyze \
lang_php/parsing \
lang_php/pretty \
lang_sql/parsing \
lang_js/parsing \
lang_js/analyze \
lang_json/parsing \
lang_cpp/parsing \
lang_cpp/analyze \
lang_c/parsing \
lang_c/analyze \
lang_java/parsing \
lang_java/analyze \
lang_python/parsing \
lang_python/analyze \
lang_go/parsing \
lang_go/analyze \
lang_csharp/parsing \
lang_csharp/analyze \
lang_rust/parsing \
lang_rust/analyze \
lang_erlang/parsing \
lang_erlang/analyze \
lang_php/analyze \
lang_php/analyze/foundation \
lang_php/analyze/checker \
lang_php/analyze/tools \
lang_php/analyze/qa_test \
lang_html/parsing \
lang_html/analyze \
lang_css/parsing \
lang_web/parsing \
lang_text \
lang_ruby/parsing \
lang_ruby/analyze \
lang_GENERIC/parsing \
lang_GENERIC/analyze \
lang_FUZZY/parsing \
metagen \
demos
INCLUDEDIRS=$(MAKESUBDIRS) \
external/deps-netsys \
external/json-wheel \
external/dyp \
external/ppx_deriving \
commons_wrappers/graph \
# cpp causes some 'warning: missing terminating' errors
CLANG_HACK=-Wno-invalid-pp-token
PP=-pp "cpp $(CLANG_HACK)"
##############################################################################
# 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 we force sequentiality.
all:: Makefile.config
$(MAKE) rec
$(MAKE) $(PROGS)
opt:
$(MAKE) rec.opt
$(MAKE) $(OPTPROGS)
all.opt: opt
top: $(TARGET).top
rec:
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i all || exit 1; done
rec.opt:
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i all.opt || exit 1; done
$(TARGET): $(LIBS) $(OBJS) cli/Main.cmo
$(OCAMLC) $(BYTECODE_STATIC) -o $@ $(SYSLIBS) $^
$(TARGET).opt: $(LIBS:.cma=.cmxa) $(OPTOBJS) cli/Main.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
$(TARGET).top: $(LIBS) $(OBJS)
$(OCAMLMKTOP) -o $@ $(SYSLIBS) threads.cma $^
clean::
rm -f cli/*.cm*
clean::
rm -f $(PROGS) $(TARGET).top *.opt
set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i clean; done
depend::
set -e; for i in $(MAKESUBDIRS); do echo $$i; $(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_pfff.ml
rm -f TAGS
# find -name ".#*1.*" | xargs rm -f
# add -custom so dont need add e.g. ocamlbdb/ in LD_LIBRARY_PATH
CUSTOM=-custom
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)
#------------------------------------------------------------------------------
# stags targets (was pfff_tags)
#------------------------------------------------------------------------------
# I've added -linkall just to debug possible issues in wrong
# order of the SRC files in the library
# (I had a linking error in efuns, which require -linkall)
stags: $(LIBS) $(OBJS) main_stags.cmo
$(OCAMLC) -linkall $(CUSTOM) -o $@ $(SYSLIBS) $^
stags.opt: $(LIBS:.cma=.cmxa) $(OPTOBJS) main_stags.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
#------------------------------------------------------------------------------
# codequery targets
#------------------------------------------------------------------------------
codequery: $(LIBS) $(OBJS) main_codequery.cmo
$(OCAMLC) $(CUSTOM) -o $@ $(SYSLIBS) $^
codequery.opt: $(LIBS:.cma=.cmxa) $(LIBS2:.cma=.cmxa) $(OBJS2:.cmo=.cmx) $(OPTOBJS) main_codequery.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
#------------------------------------------------------------------------------
# codeslicer targets
#------------------------------------------------------------------------------
codeslicer: $(LIBS) $(OBJS) main_codeslicer.cmo
$(OCAMLC) $(CUSTOM) -o $@ $(SYSLIBS) $^
codeslicer.opt: $(LIBS:.cma=.cmxa) $(OPTOBJS) main_codeslicer.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
#------------------------------------------------------------------------------
# pfff_db targets
#------------------------------------------------------------------------------
pfff_db: $(LIBS) $(OBJS) main_db.cmo
$(OCAMLC) $(CUSTOM) -o $@ $(SYSLIBS) $^
pfff_db.opt: $(LIBS:.cma=.cmxa) $(LIBS2:.cma=.cmxa) $(OBJS2:.cmo=.cmx) $(OPTOBJS) main_db.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
#------------------------------------------------------------------------------
# pfff_test targets
#------------------------------------------------------------------------------
pfff_test: $(LIBS) $(OBJS) tests/Test.cmo
$(OCAMLC) $(CUSTOM) -o $@ $(SYSLIBS) $^
pfff_test.opt: $(LIBS:.cma=.cmxa) $(OPTOBJS) tests/Test.cmx
$(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $^
clean::
rm -f tests/*.cm*
##############################################################################
# Build documentation
##############################################################################
.PHONY:: docs
##############################################################################
# Install
##############################################################################
VERSION=$(shell cat globals/config_pfff.ml.in |grep version |perl -p -e 's/.*"(.*)".*/$$1/;')
install: all
ocamlfind install $(OPAMPKG) META
uninstall: all
ocamlfind remove $(OPAMPKG)
#old:
# note: don't remove DESTDIR, it can be set by package build system like ebuild
# mkdir -p $(DESTDIR)$(BINDIR)
# mkdir -p $(DESTDIR)$(SHAREDIR)
# cp -a $(PROGS) $(DESTDIR)$(BINDIR)
# cp -a data $(DESTDIR)$(SHAREDIR)
# @echo ""
# @echo "You can also install pfff by copying the programs"
# @echo "available in this directory anywhere you want and"
# @echo "give it the right options to find its configuration files."
#
#uninstall:
# rm -rf $(DESTDIR)$(SHAREDIR)/data
# Some of those libraries are needed by efuns, magicator, syncweb
INSTALL_SUBDIRS= \
commons commons_core commons_ocollection commons_wrappers/graph \
globals \
h_program-lang \
h_files-format h_visualization \
graph_code \
lang_ml/parsing lang_ml/analyze \
lang_cpp/parsing lang_cpp/analyze \
lang_c/parsing lang_c/analyze \
lang_java/parsing lang_java/analyze \
lang_js/parsing lang_js/analyze \
lang_json/parsing \
lang_python/parsing lang_python/analyze \
lang_go/parsing lang_go/analyze\
lang_nw/parsing lang_nw/analyze \
lang_php/parsing lang_php/analyze/foundation lang_php/analyze/checker \
lang_php/analyze/visual \
lang_lisp/parsing lang_lisp/analyze \
lang_skip/parsing lang_skip/analyze \
lang_rust/parsing lang_rust/analyze \
lang_erlang/parsing lang_erlang/analyze \
lang_haskell/parsing lang_haskell/analyze \
lang_csharp/parsing lang_csharp/analyze \
lang_html/parsing lang_html/analyze \
lang_ruby/parsing lang_ruby/analyze \
lang_text/ \
lang_GENERIC/parsing lang_GENERIC/analyze \
lang_FUZZY/parsing \
install-libs:: all all.opt
set -e; for i in $(INSTALL_SUBDIRS); do echo $$i; $(MAKE) -C $$i install-lib; done
uninstall-libs::
set -e; for i in $(INSTALL_SUBDIRS); do echo $$i; $(MAKE) -C $$i uninstall-lib; done
reinstall-libs:
make uninstall-libs
make install-libs
version:
@echo $(VERSION)
##############################################################################
# Package rules
##############################################################################
PACKAGE=$(TARGET)-$(VERSION)
TMP=/tmp
package:
make srctar
srctar:
make clean
cp -a . $(TMP)/$(PACKAGE)
cd $(TMP); tar cvfz $(PACKAGE).tgz $(PACKAGE)
rm -rf $(TMP)/$(PACKAGE)
#todo? automatically build binaries for Linux, Windows, etc?
#http://stackoverflow.com/questions/2689813/cross-compile-windows-64-bit-exe-from-linux
#TODO: making an OPAM package:
# - git push from pfff to github
# - make a new release on github: https://github.com/facebook/pfff/releases
# - get md5sum of new archive
# - update opam file in opam-repository/pfff-xxx/
# - test locally?
# - commit, git push
# - do pull request on github
##############################################################################
# Website rules
##############################################################################
# see also ~/github/pfff-wiki/
WEBSITE=/home/pad/mobile/homepage/software/project-pfff
gen-html:
emacs -l ~/.emacs --eval "(progn (htmlize-many-files '(\"changes.txt\")) (kill-emacs))"
website:
cp $(TMP)/$(PACKAGE).tgz $(WEBSITE)
# make gen-html
# cp changes.txt.html $(WEBSITE)/changes-$(VERSION).html
##############################################################################
# Developer rules
##############################################################################
.PHONY:: check tags graph prolog db layers visual tests test .merlin
check:
docker run --rm -v "${PWD}:/src" returntocorp/semgrep:develop --config semgrep.yml --exclude parsing_errors --exclude todo --exclude TODO_more --strict
.merlin:
@echo '# -*- sh -*-' > .merlin
@echo '# Auto-generated by make .merlin' >> .merlin
@set -e; for i in $(INCLUDEDIRS); do echo "S $$i" >> .merlin || exit 1; done
@set -e; for i in $(INCLUDEDIRS); do echo "B $$i" >> .merlin || exit 1; done
@echo 'B external/FOR_MERLIN/**' >> .merlin
@echo 'S external/FOR_MERLIN/**' >> .merlin
graph:
~/github/codegraph/_build/default/bin/main_codegraph_build.exe -lang cmt -derived_data -verbose .
prolog:
./codequery.opt -lang cmt -build .
mv facts.pl facts_pl
#old: superseded by codegraph -derived_data above
tags:
./stags.opt -lang cmt .
db:
./pfff_db.opt -db_of_graph_code graph_code.marshall
layers:
./codegraph.opt -gen_bottomup_layer graph_code.marshall layer_graph_code.json
#./pfff_db_heavy -gen_age_layer /home/pad/local/pfff-for-layers layer_age.marshall
#./pfff_db_heavy -gen_age_layer /home/pad/local/pfff-for-layers layer_age.json
EFUNSCLIENT=/home/pad/github/fork-efuns/efuns_client
visual:
~/github/codemap/_build/default/bin/main_codemap.exe -screen_size 3 -filter pfff -efuns_client $(EFUNSCLIENT) -emacs_client /dev/null .
loc:
./codemap -no_legend -profile -screen_size 3 -filter pfff -test_loc .
tests:
$(MAKE) rec && $(MAKE) pfff_test
cd tests; ../pfff_test -verbose all
test:
make tests
push:
git push origin master
pull:
git pull
cd facebook; git pull
##############################################################################
# Other/Old developer rules
##############################################################################
visual2:
./codemap -no_legend -profile -ss 2 \
-with_info DB_LIGHT.marshall -with_layers . .
visualhead:
./codemap -ss 1 -ft 0.5 -commitid HEAD
graph2:
./codegraph.opt -lang ml -build .
#refactoring:
# git grep -l Source_high | xargs perl -p -i -e 's/Source_highlight/Highlight_code/g'
# TODO: replace all of that with a graphviz plugin for codegraph
DSRC=$(SRC)
DIRS= $(filter-out commons external/battery_included/ocamlgtk external/battery_included/ocamlcairo external/ocamlgraph facebook, $(MAKESUBDIRS))
#DIRS=lang_php/parsing
DSRC+=$(DIRS:=/*.ml)
DSRC+=$(wildcard main_*.ml)
#PP1=-pp camlp4o
DOTCOLORS=green,darkgoldenrod2,cyan,red,magenta,yellow,burlywood1,aquamarine,purple,lightpink,salmon,mediumturquoise,black,slategray3
archi:
ocamldoc $(PP1) -I +threads $(INCLUDES) $(DSRC) \
-dot -dot-reduce -dot-colors $(DOTCOLORS)
dot -Tps ocamldoc.out > dot.ps
mv dot.ps Fig_graph_ml.ps
ps2pdf Fig_graph_ml.ps
rm -f Fig_graph_ml.ps
##############################################################################
# Literate programming
##############################################################################
LPDIRS=\
h_visualization\
docs/ocaml \
lang_php/parsing lang_php/analyze \
code_map
lpclean::
set -e; for i in $(LPDIRS); do echo $$i; $(MAKE) -C $$i $@; done