-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (27 loc) · 913 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
30
31
32
33
34
# Código escrito por
# Anderson Aparecido do Carmo Frasão
# GRR 20204069
# Erick Eckermann Cardoso
# GRR 20186075
CFLAGS = -Wall -g
LFLAGS = -lmatheval -lm
objs = main.o utils.o SistLinear.o Metodo_de_Newton_Inexato.o Metodo_de_Newton_Modificado.o Metodo_de_Newton_Padrao.o
all: newtonPC
newtonPC: $(objs)
gcc $(objs) -o newtonPC $(CFLAGS) $(LFLAGS)
main.o: main.c
cc -c main.c $(CFLAGS)
utils.o: utils.c
cc -c utils.c $(CFLAGS)
SistLinear.o: SistLinear.c
cc -c SistLinear.c $(CFLAGS)
Metodo_de_Newton_Inexato.o: Metodo_de_Newton_Inexato.c
cc -c Metodo_de_Newton_Inexato.c $(CFLAGS)
Metodo_de_Newton_Modificado.o: Metodo_de_Newton_Modificado.c
cc -c Metodo_de_Newton_Modificado.c $(CFLAGS)
Metodo_de_Newton_Padrao.o: Metodo_de_Newton_Padrao.c
cc -c Metodo_de_Newton_Padrao.c $(CFLAGS)
clean:
-rm -f *.o *~
purge: clean
-rm -f newtonPC