We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e0a95 commit 881a9cfCopy full SHA for 881a9cf
Makefile
@@ -1,5 +1,5 @@
1
-tree.exe: main.o commentDFA.o tokenizer.o parser.o table.o tree.o
2
- g++ -std=c++17 -g main.o commentDFA.o tokenizer.o parser.o table.o tree.o -o tree.exe
+tree.x: main.o commentDFA.o tokenizer.o parser.o table.o tree.o
+ g++ -std=c++17 -g main.o commentDFA.o tokenizer.o parser.o table.o tree.o -o tree.x
3
4
main.o: main.cpp commentDFA.h tokenizer.h parser.h testFiles.h
5
g++ -std=c++17 -g main.cpp -o main.o -c
@@ -20,4 +20,4 @@ tree.o: tree.cpp tree.h
20
g++ -std=c++17 -g tree.cpp -o tree.o -c
21
22
clean:
23
- rm -f tree.exe *.o *.txt
+ rm -f tree.x *.o *.txt
0 commit comments