-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
24 lines (18 loc) · 764 Bytes
/
makefile
File metadata and controls
24 lines (18 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# all: src/main.c src/reader.c src/constantpool.c src/displayer.c src/flags.c src/interfaces.c src/fields.c src/methods.c src/attributes.c
# gcc -o bin/main src/main.c src/reader.c src/constantpool.c src/displayer.c src/flags.c src/interfaces.c src/fields.c src/methods.c src/attributes.c -lm
# run: all
# bin/main
# ladeira: all
# bin/main exp/Jogador.class
# teste: all
# bin/main exp/vetor2-Eclipses.class
# long: all
# bin/main exp/vetor2-Eclipses.class
all: src/main.cpp src/Constant_pool.cpp src/Interface.cpp
g++ -o bin/main src/main.cpp src/Reader.cpp src/Constant_pool.cpp src/Displayer.cpp src/Interface.cpp
run: all
bin/main E exp/Jogador.class
eclipse: all
bin/main E exp/vetor2-Eclipses.class
negativo: all
bin/main E exp/Negativo.class