-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
42 lines (30 loc) · 1.11 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
TARGET = all
# Incude and Library paths
all : make_java make_c++ make_python
make_web:
cd java/web_tutorial_mastercopy; make webversion
cd c++/web_tutorial_mastercopy; make webversion
cd python/web_tutorial_mastercopy; make webversion
make_testing:
cd java/web_tutorial_testing/; make test_clean
cd java/web_tutorial_mastercopy; make testing
cd c++/web_tutorial_testing/; make test_clean
cd c++/web_tutorial_mastercopy; make testing
cd python/web_tutorial_testing/; make test_clean
cd python/web_tutorial_mastercopy; make testing
make_java:
cd java/web_tutorial_mastercopy; make testing;
cd java/web_tutorial_testing; make; make run;
cd java/data_src_dependent; make; make run;
make_c++:
cd c++/web_tutorial_mastercopy; make testing;
cd c++/web_tutorial_testing; make; make run;
cd c++/data_src_dependent; make; make run;
make_python:
cd python/web_tutorial_mastercopy; make testing;
cd python/web_tutorial_testing; make; make run;
clean:
cd c++/web_tutorial_testing; make clean;
cd c++/data_src_dependent; make clean;
cd java/web_tutorial_testing; make clean;
cd java/data_src_dependent; make clean;