-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
17 lines (14 loc) · 695 Bytes
/
Makefile
File metadata and controls
17 lines (14 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#Makefile
all: folders
g++ -o obj/cost.o -c -Werror -std=c++0x -O2 -Iinclude src/cost.cc
g++ -o obj/greedy.o -c -Werror -std=c++0x -O2 -Iinclude src/greedy.cc
g++ -o obj/input.o -c -Werror -std=c++0x -O2 -Iinclude src/input.cc
g++ -o obj/localSearch.o -c -Werror -std=c++0x -O2 -Iinclude src/localSearch.cc
g++ -o obj/main.o -c -Werror -std=c++0x -O2 -Iinclude src/main.cc
g++ -o obj/memetic.o -c -Werror -std=c++0x -O2 -Iinclude src/memetic.cc
g++ -o obj/tabuSearch.o -c -Werror -std=c++0x -O2 -Iinclude src/tabuSearch.cc
g++ -o bin/qap obj/cost.o obj/greedy.o obj/input.o obj/localSearch.o obj/main.o obj/memetic.o obj/tabuSearch.o
folders:
mkdir -p bin obj
clear:
rm bin/* obj/*