-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 888 Bytes
/
Makefile
File metadata and controls
38 lines (26 loc) · 888 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
aSTbc: Key.o Note.o Print_Visitor.o Visitor.o rational.o StringFunctions.o aSTbc.y.o aSTbc.l.o commander.o
g++ Key.o Note.o Print_Visitor.o Visitor.o rational.o StringFunctions.o aSTbc.y.o aSTbc.l.o commander.o -o aSTbc
Key.o: Key.cpp
g++ -c Key.cpp
Note.o: Note.cpp
g++ -c Note.cpp
Print_Visitor.o: Print_Visitor.cpp
g++ -c Print_Visitor.cpp
Visitor.o: Visitor.cpp
g++ -c Visitor.cpp
rational.o: rational.cpp
g++ -c rational.cpp
StringFunctions.o: StringFunctions.cpp
g++ -c StringFunctions.cpp
aSTbc.y.o: aSTbc.y.c
g++ -c aSTbc.y.c
aSTbc.l.o: aSTbc.l.c
g++ -c aSTbc.l.c
aSTbc.y.c: aSTbc.y
yacc --defines=aSTbc.h -o aSTbc.y.c aSTbc.y
aSTbc.l.c: aSTbc.l
lex -o aSTbc.l.c aSTbc.l
commander.o: commander.cpp
g++ -c commander.cpp
clean:
rm aSTbc Key.o Note.o Print_Visitor.o Visitor.o rational.o StringFunctions.o aSTbc.y.o aSTbc.l.o commander.o aSTbc.y.c aSTbc.l.c