forked from josue22almo/airlingScheduling-MaxFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (24 loc) · 1.03 KB
/
Makefile
File metadata and controls
28 lines (24 loc) · 1.03 KB
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
all: airSche
version = v1
type = edmonds
airSche: ./fonts/*.cpp
g++ -c ./fonts/*.cpp
g++ *.o -o airSche -Wall -W -std=c++11
rm *.o
resultados: ./airSche
./generate_results.sh 1
./generate_results.sh 2
test: ./airSche
./airSche $(version) $(type) < Benchmark/instance_100_10_10.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_1.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_2.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_3.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_4.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_5.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_6.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_7.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_8.air >> test.txt
./airSche $(version) $(type) < Benchmark/instance_100_10_9.air >> test.txt
diff test.txt Benchmark/TablaResultadosEjemplo.txt
clean:
rm airSche