-
Notifications
You must be signed in to change notification settings - Fork 54
/
Makefile
792 lines (662 loc) · 32.1 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
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
# Put user-specific changes in your own Makefile.user file in this directory.
# Make will silently continue if Makefile.user does not exist.
-include Makefile.user
DAIKONDIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
HTMLTOOLS ?= ${DAIKONDIR}/utils/html-tools
CHECKLINK ?= ${DAIKONDIR}/utils/checklink
PLUMESCRIPTS ?= ${DAIKONDIR}/utils/plume-scripts
SORT_DIRECTORY_ORDER = ${PLUMESCRIPTS}/sort-directory-order
ifneq "$(wildcard ${SORT_DIRECTORY_ORDER})" "${SORT_DIRECTORY_ORDER}"
# Until "make ../plume-scripts" has been run, sort-directory-order is not available.
SORT_DIRECTORY_ORDER = sort
endif
##########################################################################
### Variables
###
# Set the NONETWORK variable to avoid network operations. Example:
# make NONETWORK=true compile
# note that for right now, we are only copying the html and texinfo
# versions of the developer manual (though the PDF version is also built)
IMAGE_FILES := daikon-logo.gif daikon-logo.png daikon-logo.eps dfepl-flow.dot
IMAGE_PARTIAL_PATHS := $(addprefix images/,$(IMAGE_FILES))
DOC_FILES_NO_IMAGES := Makefile index.html daikon.texinfo \
config-options.texinfo invariants-doc.texinfo \
daikon.pdf daikon.html developer.texinfo \
developer.html CHANGELOG.md VERSION daikon-favicon.png
DOC_FILES := ${DOC_FILES_NO_IMAGES} $(IMAGE_PARTIAL_PATHS)
DOC_PATHS := $(addprefix doc/,$(DOC_FILES))
# The texinfo files are included so we can diff to see what has changed from
# release to release. They are in the dist/doc directory, but not
# visible to the user.
DOC_FILES_USER := daikon.pdf daikon.html developer.html developer.pdf \
daikon.texinfo developer.texinfo config-options.texinfo \
invariants-doc.texinfo CHANGELOG.md daikon-favicon.png VERSION
README_PATHS := README doc/README fjalar/README
# Files that contain the (automatically updated) version number and date.
DIST_VERSION_FILES := ${README_PATHS} doc/daikon.texinfo doc/developer.texinfo \
doc/index.html doc/www/download/index.html
# Scripts, such as Perl programs, that are included in the Daikon distribution.
# Why not just include all of them? (Maybe to avoid problems with
# accidentally including things in the user's checkout that are not needed
# by most users, but why not include everything that's in repository?)
# Need to include the Dockerfiles as they are referenced from 'Requirements for
# compiling Daikon' in the Daikon Developer manual; which is in turn referenced
# from the 'Installation' section of the Daikon manual.
SCRIPT_FILES := Makefile \
daikon.bashrc \
dfepl dtrace-perl dtype-perl \
java-cpp \
kvasir-dtrace \
convertcsv.pl \
trace-untruncate trace-untruncate-fast.c trace-purge-fns.pl trace-purge-vars.pl \
trace-add-nonces.pl \
checkargs.pm util_daikon.pm \
runcluster.pl decls-add-cluster.pl extract_vars.pl dtrace-add-cluster.pl Dockerfile*
SCRIPT_PATHS := $(addprefix scripts/,$(SCRIPT_FILES))
# This is so troublesome that it isn't used except as a list of dependences for make commands
DAIKON_JAVA_FILES := $(shell find java -name '*daikon-java*' -prune -o -name '*.java' -print | ${SORT_DIRECTORY_ORDER})
DAIKON_RESOURCE_FILES := daikon/config/example-settings.txt \
daikon/simplify/daikon-background.txt \
daikon/simplify/daikon-background-defined.txt \
daikon/test/InvariantFormatTest.commands \
daikon/test/SampleTester.commands \
daikon/test/SampleTester.decls \
daikon/test/SampleTesterGlobal.decls \
daikon/test/SampleTester.test \
daikon/test/varInfoNameTest.testEscForall \
daikon/test/varInfoNameTest.testEscForall.goal \
daikon/test/varInfoNameTest.testJML \
daikon/test/varInfoNameTest.testJML.goal \
daikon/test/varInfoNameTest.testParse \
daikon/test/varInfoNameTest.testParse.goal \
daikon/test/varInfoNameTest.testSubscript \
daikon/test/varInfoNameTest.testSubscript.goal \
daikon/test/GenericTestClass.java \
daikon/test/dtracediff/AllTypes.dtrace.gz \
daikon/test/dtracediff/Hanoi-badvar.dtrace.gz \
daikon/test/dtracediff/Hanoi-mungpointers.dtrace.gz \
daikon/test/dtracediff/Hanoi-badvalue.dtrace.gz \
daikon/test/dtracediff/Hanoi.dtrace.gz \
daikon/test/dtracediff/Hanoi-truncated.dtrace.gz
# the following is only used in the "make showvars" target
WWW_FILES := $(shell cd doc/www; find . -type f -print | egrep -v '~$$|/.\#|.bak$$|uw/|pubs/' | ${SORT_DIRECTORY_ORDER})
WWW_PARENT ?= /cse/web/research/plse
WWW_DIR := $(WWW_PARENT)/daikon
INV_DIR := $(shell pwd)
JAR_DIR := $(INV_DIR)
QT_PATH := ../../../daikon.jar:.:../../../java/*
# Staging area for the distribution
STAGING_DIR := $(WWW_PARENT)/staging-daikon
# Files to copy to the website, from $DAIKONDIR/doc/www/
WWW_DAIKON_FILES := faq.html index.html mailing-lists.html StackAr.html \
download/index.html download/doc/index.html
REPOSITORY := https://github.com/codespecs/daikon.git
RSYNC_AR := rsync -aR
GIT_OPTIONS ?=
# JUNIT_VERSION := junit3.8.1
RM_TEMP_FILES := rm -rf `find . \( -name UNUSED -o -name SCCS -o -name RCS -o -name '*.o' -o -name '*~' -o -name '.*~' -o -name '*.orig' -o -name 'config.log' -o -name '*.java-*' -o -name '*to-do' -o -name 'TAGS' -o -name '.\#*' -o -name '.deps' -o -name jikes -o -name daikon-java -o -name daikon-output -o -name core -o -name '*.bak' -o -name '*.rej' -o -name '*.old' -o -name '.nfs*' -o -name '\#*\#' \) -print`
# cannot use ?= to set TMPDIR as the evaulation is defered and the time might change
ifeq ($(origin TMPDIR), undefined)
TMPDIR := $(if $(shell if [ -d /scratch ] ; then echo true; fi),/scratch/$(USER),/tmp/$(USER))$(shell date +%Y%m%d%H%M%S)
endif
# For deterministic sorting
export LC_ALL=C
## Examples of better ways to get the lists:
# PERL_MODULES := $(wildcard *.pm)
# PERL_SCRIPTS := $(wildcard *.pl)
# PERL_SCRIPTS += em_analyze em_reports cppp
# PERL_MODULE_TEXI := $(patsubst %.pm,%.texi,$(PERL_MODULES))
# PERL_MODULE_INFO := $(patsubst %.pm,%.info,$(PERL_MODULES))
# PERL_MODULE_MAN := $(patsubst %.pm,%.man,$(PERL_MODULES))
# PERL_MODULE_HTML := $(patsubst %.pm,%.html,$(PERL_MODULES))
###########################################################################
### Rules
###
### Default tag
help:
@echo
@echo "Targets:"
@echo " compile compile-java -- compile Java files"
@echo " junit -- run unit tests"
@echo " test -- run system tests"
# must 'make compile' before 'make doc-all'
@echo " doc-all -- build all documentation"
@echo " tags TAGS -- make TAGS file for Emacs"
@echo " kvasir -- make Kvasir, the C front end"
@echo " very-clean -- remove (most) all generated files"
@echo " dyncomp-jdk -- Make file java/dcomp_rt.jar"
@echo
@echo "Targets for creating the Daikon distribution:"
@echo " daikon.tar daikon.jar -- just makes the tar files"
@echo " staging -- moves all release file to staging-daikon/"
@echo " test-staged-dist -- tests the distribution in staging-daikon/"
@echo " staging-to-www -- copies staging-daikon/ to website"
@echo " "
@echo "Daikon source code is in the java/daikon subdirectory (but you"
@echo "can perform basic operations like compiling it from here)."
### Compiling the code
compile: compile-java
compile-java:
cd java && $(MAKE) all
very-clean:
find . -type f -name "*~" -exec rm -f {} \;
${MAKE} -C ${DAIKONDIR} clean-everything
cd scripts && $(MAKE) clean
cd tests && $(MAKE) very-clean
-rm -rf examples/java-examples/QueueAr/DataStructures/*.class
-rm -rf examples/java-examples/StackAr/DataStructures/*.class
-rm -rf tests/sources/DataStructures/*.class
-rm -rf daikon-*.tar daikon-*.zip
-rm -rf utils
clean-java:
cd java && $(MAKE) clean
javadoc:
cd java && $(MAKE) javadoc
dyncomp-jdk:
cd java && $(MAKE) dyncomp-jdk
dcomp-jdk:
cd java && $(MAKE) dcomp-jdk
reformat:
cd java && $(MAKE) reformat
### Kvasir (C/C++ front end)
../fjalar:
(cd .. && git clone ${GIT_OPTIONS} https://github.com/codespecs/fjalar.git fjalar)
fjalar/valgrind/Makefile.am:
# If fjalar/valgrind/Makefile.am does not exist, then this must be a fresh
# daikon repository and we need to create the parallel fjalar repository.
$(MAKE) ../fjalar
ln -nsf ../fjalar fjalar
# force a build
touch $@
fjalar/valgrind/Makefile.in: fjalar/valgrind/Makefile.am
cd fjalar/valgrind && ./autogen.sh
fjalar/valgrind/Makefile: fjalar/valgrind/Makefile.in
cd fjalar/valgrind && ./configure --prefix=`pwd`/inst
.PHONY: kvasir
kvasir:
$(MAKE) fjalar/valgrind/Makefile
$(MAKE) -C fjalar/valgrind --no-print-directory
$(MAKE) -C fjalar/valgrind install >/dev/null
build-kvasir:
ifeq (Linux x86_64,$(shell uname -sm))
$(MAKE) kvasir
else
@echo "Not building Kvasir: it's only for Linux x86-64"
@echo "and this appears to be" `uname -sm`
endif
### Rebuild everything; used for monthly releases, for example
rebuild-everything-clean:
${MAKE} -C ${DAIKONDIR} clean-everything
${MAKE} -C ${DAIKONDIR} rebuild-everything
rebuild-everything-but-kvasir-clean:
${MAKE} -C ${DAIKONDIR} clean-everything-but-kvasir
${MAKE} -C ${DAIKONDIR} rebuild-everything-but-kvasir
rebuild-everything:
${MAKE} -C ${DAIKONDIR} rebuild-everything-but-kvasir
${MAKE} -C ${DAIKONDIR} rebuild-kvasir
rebuild-everything-but-kvasir:
${MAKE} -C ${DAIKONDIR}/java compile
${MAKE} -C ${DAIKONDIR} daikon.jar
${MAKE} -C ${DAIKONDIR}/java dcomp_rt.jar
${MAKE} -C ${DAIKONDIR}/java javadoc
${MAKE} -C ${DAIKONDIR} doc-all
rebuild-kvasir:
${MAKE} build-kvasir
clean-everything:
${MAKE} -C ${DAIKONDIR} clean-everything-but-kvasir
${MAKE} -C ${DAIKONDIR} clean-kvasir
clean-everything-but-kvasir:
-rm -rf daikon.jar
-rm -rf java/java_files.txt
${MAKE} -C ${DAIKONDIR}/java very-clean
${MAKE} -C ${DAIKONDIR}/doc very-clean
clean-kvasir:
-${MAKE} -i -C ${DAIKONDIR}/fjalar very-clean
### Testing the code
# Note that these do NOT compile the code, even if compilation is necessary.
test:
cd tests && $(MAKE) all
junit:
cd java && $(MAKE) junit
# A quick test used to verify that Chicory and Daikon
# are working properly.
quick-test:
cd examples/java-examples/StackAr; \
javac -g DataStructures/*.java
@echo "Running Chicory/Daikon"
cd examples/java-examples/StackAr; \
java -cp $(QT_PATH) daikon.Chicory --daikon DataStructures.StackArTester
@echo "Running DynComp/Chicory/Daikon"
cd examples/java-examples/StackAr; \
java -cp $(QT_PATH) daikon.DynComp DataStructures.StackArTester; \
java -cp $(QT_PATH) daikon.Chicory --comparability-file=StackArTester.decls-DynComp DataStructures.StackArTester; \
java -cp $(QT_PATH) daikon.Daikon StackArTester.dtrace.gz
# Sanity check, suitable for continuous integration such as Jenkins or Travis.
nightly-test:
$(MAKE) showvars compile daikon.jar
$(MAKE) javadoc doc-all
$(MAKE) dyncomp-jdk
$(MAKE) junit test
# For systems such as Ubuntu 12.04 where makeinfo does not take the --pdf
# command-line option, don't build the PDF manual.
nightly-test-except-doc-pdf:
$(MAKE) showvars compile daikon.jar
$(MAKE) javadoc doc-all-except-pdf
$(MAKE) dyncomp-jdk
$(MAKE) junit test
### Tags
# To make a TAGS table that does not include generated files, run:
# make -C java tags-sans-generated
TAGS: tags
.PHONY: tags
tags:
cd java && $(MAKE) tags
etags --include=java/TAGS
###########################################################################
### Test the distribution
###
# This is the target we use to verify that the software we are about
# to distribute runs correctly in a variety of target environments.
# Currently, we test Rocky Linux, Mac OS X, and Ubuntu client machines.
distribution-check:
$(MAKE) -C scripts
ifdef DAIKONCLASS_SOURCES
$(MAKE) -C java
endif
$(MAKE) -C java dcomp_rt.jar
$(MAKE) build-kvasir
$(MAKE) quick-test
DISTTESTDIR := ${TMPDIR}/daikon.dist
DISTTESTDIRJAVA := ${TMPDIR}/daikon.dist/daikon/java
# This is the target we use to do a sanity check of the distribution
# on the machine used to build the release - prior to running the
# 'distribution-check' target on a variety of client machines.
# - verify we can open/unpack the distribution tar file
# - run the junit verification tests on daikon.jar
# - verify the released class files are all version 8
# - verify that we can rebuild the .class files from the .java files
# - run the junit verification tests on the class files
# - run the quick-test
test-staged-dist: $(STAGING_DIR)
## First, get and test daikon.jar.
-rm -rf $(DISTTESTDIR)
mkdir -p $(DISTTESTDIR)
(cd $(DISTTESTDIR); tar xzf $(STAGING_DIR)/download/$(NEW_RELEASE_NAME).tar.gz)
(cd $(DISTTESTDIR); mv $(NEW_RELEASE_NAME) daikon)
(cd $(DISTTESTDIR)/daikon/java && $(MAKE) junit)
## Make sure that all of the class files are 1.8 (version 52) or earlier.
(cd $(DISTTESTDIRJAVA) && find . \( -name '*.class' \) -print | xargs -n 1 ../utils/plume-scripts/classfile_check_version 52)
## Test that we can rebuild the .class files from the .java files.
(cd $(DISTTESTDIRJAVA)/daikon; rm `find . -name '*.class'`; $(MAKE) all_javac)
## Test that these new .class files work properly.
(cd $(DISTTESTDIR)/daikon/java && $(MAKE) junit)
## Test the main target of the makefile.
cd $(DISTTESTDIR)/daikon && make
## Test that we can build docs.
cd $(DISTTESTDIR)/daikon && $(MAKE) doc-all
## Test the basic operation of Chicory/DynComp/Daikon.
cd $(DISTTESTDIR)/daikon && $(MAKE) distribution-check
# I would rather define this inside the repository-test rule. (In that case I
# must use "$$FOO", not $(FOO), to refer to it.)
MYTESTDIR=${TMPDIR}/test
TESTPATH=${MYTESTDIR}/daikon/java
#This is broken and under repair! (markro)
repository-test:
-rm -rf $(MYTESTDIR)
mkdir -p $(MYTESTDIR)
cd $(MYTESTDIR)
git clone $(REPOSITORY) daikon
# vars for Daikon
export DAIKONDIR=${MYTESTDIR}/daikon
# source ${DAIKONDIR}/scripts/daikon.bashrc
cd daikon && $(MAKE)
validate:
html5validator --ignore /doc/daikon.html /doc/daikon/ /doc/developer.html /doc/developer/ /java/api/ tools/hierarchical/clustering.html /tests/sources/
###########################################################################
### Distribution
###
# Main distribution
# A couple of checks to see if we can proceed with staging.
# Verify that doc/CHANGELOG.md is newer than doc/daikon.texinfo - error out if not.
# Report any uncommited files - users responsibility to act on results.
check-repo: doc/CHANGELOG.md
git status -uno
# The staging target builds all of the files that will be distributed
# to the website in the directory $(STAGING_DIR). This includes:
# daikon.tar.gz, daikon.zip, daikon.jar, javadoc, and the documentation.
# See the dist target for moving these files to the website.
staging:
# Our intention is that members of the plse_www group will always have
# write permission on the release directories; however, if you happen
# to be the owner of an existing file, the permissions system gives
# that priority and we must set the write bit. These two chmod commands
# will fail if you are not the owner, but the remainder of the commands
# should work fine.
-chmod u+w $(WWW_PARENT)
-chmod -R u+w $(STAGING_DIR)
/bin/rm -rf $(STAGING_DIR)
mkdir $(STAGING_DIR)
cp -pR $(WWW_DIR)/history $(STAGING_DIR)
mkdir $(STAGING_DIR)/download
$(MAKE) save-current-release
cp -pR $(WWW_DIR)/download/inv-cvs $(STAGING_DIR)/download
# Build the main tarfile for daikon
@echo "]2;Building daikon.tar"
# make daikon.tar has side effect of making documents
# it also causes doc/CHANGELOG.md time stamp to be checked; which
# we do not care about at this point.
touch doc/CHANGELOG.md
# create TMPDIR
install -d ${TMPDIR}
# keep same TMPDIR value
$(MAKE) TMPDIR=${TMPDIR} daikon.tar
gzip -c ${TMPDIR}/$(NEW_RELEASE_NAME).tar > $(STAGING_DIR)/download/$(NEW_RELEASE_NAME).tar.gz
cp -pf ${TMPDIR}/$(NEW_RELEASE_NAME).zip $(STAGING_DIR)/download/$(NEW_RELEASE_NAME).zip
cp -pf daikon.jar $(STAGING_DIR)/download
# Build javadoc
@echo "]2;Building Javadoc"
mkdir $(STAGING_DIR)/download/api
# Javadoc is skipped on Java 8. Hard-coded JAVA_HOME path is a hack.
(export PATH=/usr/lib/jvm/java-11/bin:${PATH}; cd java; $(MAKE) SKIP_JAVADOC=0 'JAVADOC_DEST=$(STAGING_DIR)/download/api' javadoc)
# Copy the documentation
@echo "]2;Copying documentation"
mkdir $(STAGING_DIR)/download/doc
cd doc && cp -pf $(DOC_FILES_USER) $(STAGING_DIR)/download/doc
cp -pR doc/images $(STAGING_DIR)/download/doc
cp -pR doc/daikon $(STAGING_DIR)/download/doc
cp -pR doc/developer $(STAGING_DIR)/download/doc
cd doc/www && ${RSYNC_AR} $(WWW_DAIKON_FILES) $(STAGING_DIR)
# Build pubs and copy the results
@echo "]2;Building Pubs"
cd doc/www && $(MAKE) pubs
mkdir $(STAGING_DIR)/pubs
cp -pR doc/www/pubs/* $(STAGING_DIR)/pubs
cp -p doc/daikon-favicon.png $(STAGING_DIR)
cp -p doc/images/daikon-logo.gif $(STAGING_DIR)
# This command updates the dates and sizes in the various index files
${HTMLTOOLS}/html-update-link-dates $(STAGING_DIR)/download/index.html
# all distributed files should belong to the group plse_www and be group writable.
# set the owner and other permissions to readonly
chgrp -R plse_www $(STAGING_DIR)
chmod -R g+w $(STAGING_DIR)
-chmod -R u-w $(STAGING_DIR)
chmod -R o-w $(STAGING_DIR)
-chmod u-w $(WWW_PARENT)
# compare new list of files in tarfile to previous list
@echo "]2;New or removed files"
@echo "***** New or removed files:"
# need to remove the leading "daikon-<version>/" before we can compare old and new
tar tzf $(WWW_DIR)/download/$(CUR_RELEASE_NAME).tar.gz | perl -p -e 's/^(.*?)\///' | sort > ${TMPDIR}/old_tar.txt
tar tzf $(STAGING_DIR)/download/$(NEW_RELEASE_NAME).tar.gz | perl -p -e 's/^(.*?)\///' | sort > ${TMPDIR}/new_tar.txt
diff -u ${TMPDIR}/old_tar.txt ${TMPDIR}/new_tar.txt || true
# Delete the tmp files
cd ${TMPDIR} && /bin/rm -rf daikon daikon.dist old_tar.txt new_tar.txt
# Convert the staging area to the live release.
# We do this by deleting the previous release directory and
# renaming the staging directory to be the release directory.
staging-to-www: $(STAGING_DIR)
-chmod u+w $(WWW_PARENT)
-chmod -R -f u+w $(WWW_DIR)
\rm -rf $(WWW_DIR)
\mv $(STAGING_DIR) $(WWW_DIR)
-chmod -R -f u-w $(WWW_DIR)
-chmod u-w $(WWW_PARENT)
# Webpages of publications that use Daikon
pubs:
$(MAKE) -C doc/www pubs
doc/CHANGELOG.md: doc/daikon.texinfo
@echo "******************************************************************"
@echo "** doc/CHANGELOG.md file is not up-to-date with respect to doc files."
@echo "** doc/CHANGELOG.md must be modified by hand."
@echo "** Try:"
@echo " diff -b -u -s --from-file $(WWW_DIR)/download/doc doc/*.texinfo"
@echo "** (or maybe touch doc/CHANGELOG.md )."
@echo "******************************************************************"
@exit 1
doc-all:
cd doc && $(MAKE) all
doc-all-except-pdf:
cd doc && $(MAKE) all-except-pdf
# Get the current release version,
# if on the CSE filesystem where an old daikon-*.zip file exists.
ifneq ($(shell ls $(WWW_DIR)/download/daikon-*.zip 2>/dev/null),)
# As we are now including links to the previous version, we must only look at the newest one to get the correct version number.
CUR_VER := $(shell ls -t -1 $(WWW_DIR)/download/daikon-*.zip |head -1 |perl -p -e 's/^.*download.daikon.//' |perl -p -e 's/.zip//')
CUR_RELEASE_NAME := daikon-$(CUR_VER)
else
CUR_RELEASE_NAME := UNKNOWN
endif
# Get the new release version.
NEW_VER := $(shell cat doc/VERSION)
NEW_RELEASE_NAME := daikon-$(NEW_VER)
check-for-broken-doc-links: update-checklink
${CHECKLINK}/checklink -q -r `grep -v '^#' ${CHECKLINK}/checklink-args.txt` http://plse.cs.washington.edu/staging-daikon >checklink.log 2>&1
HISTORY_DIR := $(STAGING_DIR)/history
save-current-release:
@echo Saving $(CUR_VER) to history directory.
-chmod u+w $(HISTORY_DIR)
mkdir $(HISTORY_DIR)/$(CUR_RELEASE_NAME)
-chmod u-w $(HISTORY_DIR)
cd $(HISTORY_DIR)/$(CUR_RELEASE_NAME) && cp -p $(WWW_DIR)/download/$(CUR_RELEASE_NAME).* . && unzip -p $(CUR_RELEASE_NAME).zip $(CUR_RELEASE_NAME)/doc/CHANGELOG.md >CHANGELOG.md && chmod o-w CHANGELOG.md .
# Create links to the previous version to help reduce confusion over a version number change.
cd $(STAGING_DIR)/download && ln $(HISTORY_DIR)/$(CUR_RELEASE_NAME)/$(CUR_RELEASE_NAME).zip
cd $(STAGING_DIR)/download && ln $(HISTORY_DIR)/$(CUR_RELEASE_NAME)/$(CUR_RELEASE_NAME).tar.gz
# Perl command compresses multiple spaces to one, for first 9 days of month.
ifeq ($(origin TODAY), undefined)
TODAY := $(shell date "+%B %e, %Y" | perl -p -e 's/ / /')
endif
update-and-commit-version: update-doc-dist-date-and-version
git commit -a -m "Change version to $(NEW_VER)"
git push
cd fjalar && git commit -a -m "Change version to $(NEW_VER)" && git push
update-doc-dist-date-and-version:
$(MAKE) update-doc-dist-date
$(MAKE) update-doc-dist-version
# Update the documentation with a new distribution date (today).
# This is done immediately before releasing a new distribution.
update-doc-dist-date:
perl -wpi -e 's/((Daikon|Fjalar) version .*, released ).*(\.|<\/CENTER>)$$/$$1${TODAY}$$3/' ${DIST_VERSION_FILES}
perl -wpi -e 'BEGIN { $$/="\n\n"; } s/(\@c .* Daikon version .* date\n\@center ).*(\n)/$$1${TODAY}$$2/;' doc/daikon.texinfo doc/developer.texinfo
perl -wpi -e 's/(public static final String release_date = ").*(";)$$/$$1${TODAY}$$2/' java/daikon/Daikon.java
touch doc/CHANGELOG.md
# Update the documentation according to the version number in VERSION.
# This isn't done as part of "make dist" because then subsequent "make www"
# would show the new version.
# I removed the dependence on "update-dist-version-file" because this rule
# is invoked at the beginning of a make.
update-doc-dist-version:
perl -wpi -e 'BEGIN { $$/="\n"; } s/((Daikon|Fjalar) version |[ \/\\]daikon-)[0-9]+(\.[0-9]+)+/$$1 . "$(NEW_VER)"/e;' ${DIST_VERSION_FILES}
# update the version number in the release archive file names
perl -wpi -e 's/(\-)[0-9]+(\.[0-9]+)+/$$1 . "$(NEW_VER)"/eg;' doc/www/download/index.html
perl -wpi -e 's/(public static final String release_version = ")[0-9]+(\.[0-9]+)*(";)$$/$$1 . "$(NEW_VER)" . $$3/e;' java/daikon/Daikon.java
perl -wpi -e 's/(VG_\(details_version\)\s*\(")[0-9]+(\.[0-9]+)*("\);)$$/$$1 . "$(NEW_VER)" . $$3/e' fjalar/valgrind/fjalar/mc_main.c
touch doc/CHANGELOG.md
# Update the version number in file doc/VERSION
# This is done immediately after releasing a new version; thus, VERSION
# refers to the next version to be released, not the previously-released one.
# (Tip: If you want the next version to end with ".0", then before running
# this target you can set the last element of VERSION to "-1".)
update-dist-version-file:
@perl -wpi -e 's/\.(-?[0-9]+)$$/"." . ($$1+1)/e' doc/VERSION
@echo -n "doc/VERSION now contains: "
@cat doc/VERSION
## Problem: "make -C java veryclean; make daikon.jar" fails, as does
## "make -C java clean; make daikon.jar".
## It seems that one must do "make compile" before "make daikon.jar".
# Perhaps daikon.jar shouldn't include JUnit or the test files.
.PHONY: jar
jar: daikon.jar
daikon.jar: $(DAIKON_JAVA_FILES) $(patsubst %,java/%,$(DAIKON_RESOURCE_FILES))
-rm -rf $@ ${TMPDIR}/daikon-jar
install -d ${TMPDIR}/daikon-jar
# Compile Daikon and copy the resulting class files
# to the ${TMPDIR}/daikon-jar directory
$(MAKE) -C java all_directly
cd java && find . \( -name "dcomp-rt*" \) -prune -o -name '*.class' -print \
| sort | xargs '-I{}' ${RSYNC_AR} '{}' ${TMPDIR}/daikon-jar
# make hamcrest and junit4 overwrite junit5 to get our special versions
for filename in $(JAR_DIR)/java/lib/*.jar $(JAR_DIR)/java/lib/hamcrest*.jar $(JAR_DIR)/java/lib/junit-4*.jar; do cd ${TMPDIR}/daikon-jar; jar xf $$filename ; done
(cd java; ${RSYNC_AR} $(DAIKON_RESOURCE_FILES) ${TMPDIR}/daikon-jar)
(cd java; ${RSYNC_AR} daikon/tools/runtimechecker/Main.doc daikon/tools/runtimechecker/InstrumentHandler.doc ${TMPDIR}/daikon-jar)
cd ${TMPDIR}/daikon-jar && \
jar cfm $@ $(JAR_DIR)/java/daikon/chicory/manifest.txt *
mv ${TMPDIR}/daikon-jar/$@ $@
#rm -rf ${TMPDIR}/daikon-jar
# This rule creates the files that comprise the distribution, but does
# not copy them anywhere. (It does no compilation of its own.)
# This rule could be changed to check out a fresh version of the
# repository, then tar from there. Then there would be no need to be so
# careful about not including extraneous files in the distribution, and one
# could make a distribution even if there were diffs in the current
# checkout.
daikon.tar daikon.zip: kvasir $(README_PATHS) $(DAIKON_JAVA_FILES) java/Makefile
make doc-all
# `make doc-all` just did the work, but check that the files exist.
make $(DOC_PATHS)
# keep same TMPDIR value
$(MAKE) TMPDIR=${TMPDIR} daikon.jar
-chmod -R +w ${TMPDIR}/daikon-* ${TMPDIR}/daikon-*.tar ${TMPDIR}/daikon-*.zip ${TMPDIR}/daikon
-rm -rf ${TMPDIR}/daikon-* ${TMPDIR}/daikon-*.tar ${TMPDIR}/daikon-*.zip ${TMPDIR}/daikon
mkdir -p ${TMPDIR}/daikon
mkdir ${TMPDIR}/daikon/doc
cp -p README ${TMPDIR}/daikon/README
cp -p README.source ${TMPDIR}/daikon/README.source
cp -p doc/README ${TMPDIR}/daikon/doc/README
(cd doc && cp -p $(DOC_FILES_NO_IMAGES) ${TMPDIR}/daikon/doc)
mkdir ${TMPDIR}/daikon/doc/images
(cd doc && cp -p $(IMAGE_PARTIAL_PATHS) ${TMPDIR}/daikon/doc/images)
cp -pR doc/daikon ${TMPDIR}/daikon/doc
cp -pR doc/developer ${TMPDIR}/daikon/doc
cp -pR doc/www ${TMPDIR}/daikon/doc
# Utility libraries
mkdir ${TMPDIR}/daikon/utils
(cd utils/plume-scripts; git archive --prefix=plume-scripts/ HEAD | (cd ${TMPDIR}/daikon/utils/ && tar xf -))
# Auxiliary programs
mkdir ${TMPDIR}/daikon/scripts
cp -p $(SCRIPT_PATHS) ${TMPDIR}/daikon/scripts
# Java example files
mkdir ${TMPDIR}/daikon/examples
cp -pR examples/java-examples ${TMPDIR}/daikon/examples
# Keep .java files, delete everything else
(cd ${TMPDIR}/daikon && find examples/java-examples -name '*.java' -prune -o \( -type f -o -name daikon-output -o -name daikon-java -o -name daikon-instrumented \) -print | xargs rm -rf)
# Perl example files
mkdir ${TMPDIR}/daikon/examples/perl-examples
(cd examples/perl-examples && cp -p Birthday.accessors Birthday.pm standalone.pl test_bday.pl ${TMPDIR}/daikon/examples/perl-examples)
# C example files for Kvasir
mkdir ${TMPDIR}/daikon/examples/c-examples
mkdir ${TMPDIR}/daikon/examples/c-examples/bzip2
cp -p examples/c-examples/bzip2/bzip2.c ${TMPDIR}/daikon/examples/c-examples/bzip2
mkdir ${TMPDIR}/daikon/examples/c-examples/wordplay
cp -p examples/c-examples/wordplay/wordplay.c ${TMPDIR}/daikon/examples/c-examples/wordplay
cp -p examples/c-examples/wordplay/words.txt ${TMPDIR}/daikon/examples/c-examples/wordplay
cp -p daikon.jar ${TMPDIR}/daikon
## Now make the daikon distribution
# First add some more files to the distribution
cp -p Makefile ${TMPDIR}/daikon/Makefile
# Daikon itself
(cd java; tar chf ${TMPDIR}/daikon-java.tar --exclude daikon-java --exclude daikon-output --exclude Makefile.user --exclude PrototypeChecker.java --exclude VIndexChecker.java --exclude VIndexAnnotatedTypeFactory.java daikon jtb lib typequals)
(mkdir ${TMPDIR}/daikon/java; cd ${TMPDIR}/daikon/java; tar xf ${TMPDIR}/daikon-java.tar; rm ${TMPDIR}/daikon-java.tar)
cp -p java/Makefile ${TMPDIR}/daikon/java/Makefile
# Maybe I should do $(MAKE) javadoc
# Don't do $(MAKE) clean which deletes .class files
(cd ${TMPDIR}/daikon/java; $(RM_TEMP_FILES))
## Front ends
mkdir ${TMPDIR}/daikon/front-end
# Perl front end
# mkdir ${TMPDIR}/daikon/front-end/perl
cp -pR front-end/perl ${TMPDIR}/daikon/front-end
(cd ${TMPDIR}/daikon/front-end/perl; $(RM_TEMP_FILES) )
# Kvasir C front end
# We use the --filter option twice with rsync to exclude unneeded files.
# The first attempts to ignore all files indicated by the contents
# of the .gitignore file. The second ignores the version control files.
rsync -rptg -L --filter=':- fjalar/.gitignore' --filter='. scripts/rsync.ignore' fjalar ${TMPDIR}/daikon
@# Internal developer documentation
rm -rf ${TMPDIR}/daikon/fjalar/valgrind/fjalar/notes
rm -rf ${TMPDIR}/daikon/fjalar/valgrind/fjalar/basic-tool
(cd ${TMPDIR}/daikon/fjalar; $(RM_TEMP_FILES) )
# Jar file needed for Chicory front end
cp -p java/ChicoryPremain.jar ${TMPDIR}/daikon/java
# Jar file needed for DynComp front end
cp -p java/dcomp_premain.jar ${TMPDIR}/daikon/java
## Tools
cp -pR tools ${TMPDIR}/daikon
(cd ${TMPDIR}/daikon/tools; $(RM_TEMP_FILES); rm -f kmeans/kmeans; (cd hierarchical; rm -f clgroup cluster den difftbl) )
## Make the source distribution proper
(cd ${TMPDIR} && chmod -R a+rX daikon)
(cd ${TMPDIR}; mv daikon $(NEW_RELEASE_NAME))
(cd ${TMPDIR}; tar cf $(NEW_RELEASE_NAME).tar $(NEW_RELEASE_NAME))
cp -pf ${TMPDIR}/$(NEW_RELEASE_NAME).tar .
(cd ${TMPDIR}; zip -r $(NEW_RELEASE_NAME).zip $(NEW_RELEASE_NAME))
cp -pf ${TMPDIR}/$(NEW_RELEASE_NAME).zip .
### Front end binaries
## (empty for now)
###########################################################################
### Utilities
###
showvars:
@echo "DAIKONDIR =" $(DAIKONDIR)
@echo "DAIKON_JAVA_FILES =" $(DAIKON_JAVA_FILES)
@echo "WWW_FILES =" $(WWW_FILES)
@echo "CUR_RELEASE_NAME =" $(CUR_RELEASE_NAME)
@echo "NEW_RELEASE_NAME =" $(NEW_RELEASE_NAME)
${MAKE} -C java showvars
# If .git does not exist, then the directory was created from a Daikon archive file.
update-libs: update-bibtex2web update-checklink update-git-scripts update-html-tools update-plume-scripts update-run-google-java-format
.PHONY: update-libs update-bibtex2web update-checklink update-git-scripts update-html-tools update-plume-scripts update-run-google-java-format
# Unfortunately, I don't see a way for the below not to output lots of "remote:" lines to the log.
# But, I can avoid doing local output.
update-bibtex2web:
ifndef NONETWORK
if test -d utils/bibtex2web/.git ; then \
(cd utils/bibtex2web && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/bibtex2web ; then \
(mkdir -p utils && (git clone -q --depth=1 https://github.com/mernst/bibtex2web.git utils/bibtex2web || (sleep 1m && git clone -q --depth=1 https://github.com/mernst/bibtex2web.git utils/bibtex2web))) \
fi
endif
update-checklink:
ifndef NONETWORK
if test -d utils/checklink/.git ; then \
(cd utils/checklink && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/checklink ; then \
(mkdir -p utils && (git clone -q --depth=1 https://github.com/plume-lib/checklink.git utils/checklink || (sleep 1m && git clone -q --depth=1 https://github.com/plume-lib/checklink.git utils/checklink))) \
fi
endif
update-git-scripts:
ifndef NONETWORK
if test -d utils/git-scripts/.git ; then \
(cd utils/git-scripts && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/git-scripts ; then \
(mkdir -p utils && (git clone -q --depth=1 https://github.com/plume-lib/git-scripts.git utils/git-scripts || (sleep 1m && git clone -q --depth=1 https://github.com/plume-lib/git-scripts.git utils/git-scripts))) \
fi
endif
update-html-tools:
ifndef NONETWORK
if test -d utils/html-tools/.git ; then \
(cd utils/html-tools && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/html-tools ; then \
(mkdir -p utils && (git clone -q --depth=1 https://github.com/plume-lib/html-tools.git utils/html-tools || (sleep 1m && git clone -q --depth=1 https://github.com/plume-lib/html-tools.git utils/html-tools))) \
fi
endif
update-plume-scripts:
ifndef NONETWORK
if test -d utils/plume-scripts/.git ; then \
(cd utils/plume-scripts && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/plume-scripts ; then \
mkdir -p utils && (git clone -q --depth=1 --depth 1 https://github.com/plume-lib/plume-scripts.git utils/plume-scripts || (sleep 1m && git clone -q --depth=1 --depth 1 https://github.com/plume-lib/plume-scripts.git utils/plume-scripts)) \
fi
endif
update-run-google-java-format:
ifndef NONETWORK
if test -d utils/run-google-java-format/.git ; then \
(cd utils/run-google-java-format && (git pull -q || (sleep 1m && (git pull || true)))) \
elif ! test -d utils/run-google-java-format ; then \
(mkdir -p utils && (git clone -q --depth=1 https://github.com/plume-lib/run-google-java-format.git utils/run-google-java-format || (sleep 1m && git clone -q --depth=1 https://github.com/plume-lib/run-google-java-format.git utils/run-google-java-format))) \
fi
endif
.PHONY: git-hooks
git-hooks: .git/hooks/pre-commit .git/hooks/post-merge
.git/hooks/pre-commit: scripts/daikon.pre-commit
(cd .git/hooks && ln -s ../../scripts/daikon.pre-commit pre-commit)
.git/hooks/post-merge: scripts/daikon.post-merge
(cd .git/hooks && ln -s ../../scripts/daikon.post-merge post-merge)