-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (20 loc) · 875 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
OPCIONS = -D_JUDGE_ -D_GLIBCXX_DEBUG -O2 -Wall -Wextra -Werror -Wno-sign-compare -std=c++11 -fno-extended-identifiers
program.exe: Barco.o Producto.o Cjt_productos.o Ciudad.o Cuenca.o program.o
g++ -o program.exe Barco.o Producto.o Cjt_productos.o Ciudad.o Cuenca.o program.o
Barco.o: Barco.cc Barco.hh
g++ -c Barco.cc $(OPCIONS)
Producto.o: Producto.cc Producto.hh
g++ -c Producto.cc $(OPCIONS)
Cjt_productos.o: Cjt_productos.cc Cjt_productos.hh
g++ -c Cjt_productos.cc $(OPCIONS)
Ciudad.o: Ciudad.cc Ciudad.hh
g++ -c Ciudad.cc $(OPCIONS)
Cuenca.o: Cuenca.cc Cuenca.hh
g++ -c Cuenca.cc $(OPCIONS)
program.o: program.cc
g++ -c program.cc $(OPCIONS)
clean:
rm -f *.o
rm -f *.exe *.tar
tar:
tar cvf practica.tar program.cc Barco.cc Barco.hh Producto.cc Producto.hh Cjt_productos.cc Cjt_productos.hh Ciudad.cc Ciudad.hh Cuenca.cc Cuenca.hh BinTree.hh Makefile