-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (34 loc) · 975 Bytes
/
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
#********************************************************************
# Copyright 2008 Adam Kiezun, Vijay Ganesh
#********************************************************************
# AUTHORS: Adam Kiezun, Vijay Ganesh
#
# BEGIN DATE: October/November 2008
#
# This file belongs to the Hampi string solver project (solver for
# equations over regular expressions)
#
# LICENSE: Please view LICENSE file in the home dir of this Program
#********************************************************************
TDY = $(shell date +%Y%m%d)
all:
./configure
$(MAKE) -C lib all
ant
translate-perftests:
$(MAKE) -C slow-tests cfganalyzer-tests
run-perftests:
$(MAKE) -C slow-tests
create-perftest-gold:
$(MAKE) -C slow-tests create-perftest-gold
package:
zip -vr hampi_${TDY}.zip * -x \*.svn*
clean:
ant clean
$(MAKE) -C lib clean
rm -rf *~
rm -rf *.sh
verify: all
$(MAKE) -C lib teststp
$(MAKE) -C lib/regex-hampi test-regexHampi
ant -lib lib -verbose AllTests