forked from lastz/lastz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.warnings
63 lines (43 loc) · 1.22 KB
/
Makefile.warnings
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
include make-include.mak
default: build_lastz
lastz_32: build_lastz_32
#---------
# builds/installation
#---------
build: build_lastz
build_lastz:
cd src && ${MAKE} --file=Makefile.warnings lastz lastz_D
build_lastz_32:
cd src && ${MAKE} --file=Makefile.warnings lastz_32
build_test_version:
cd src && ${MAKE} --file=Makefile.warnings lastz-test lastz_D-test
install: install_lastz
install_lastz:
cd src && ${MAKE} --file=Makefile.warnings install
install_32:
cd src && ${MAKE} --file=Makefile.warnings install_32
install_test_version:
cd src && ${MAKE} --file=Makefile.warnings install_test_version
# cleanup
clean:
cd src && ${MAKE} clean
cleano:
cd src && ${MAKE} cleano
#---------
# testing
#
# test:
# A small test to give some comfort level that the program has built properly,
# or that changes you've made to the source code haven't broken it. If the
# test succeeds, there will be no output from the diff.
# base_tests:
# More extensive tests (but still small). The results should be of this form:
# SUCCESS: ../test_data/xxx and ../test_results/yyy are equivalent
#---------
test:
cd src && ${MAKE} test
base_tests:
cd src && ${MAKE} base_tests
clean_test: clean_tests
clean_tests:
cd src && ${MAKE} clean_tests