From a221808aec42b4f9afc4a371d49258e54de52810 Mon Sep 17 00:00:00 2001 From: ridethepig Date: Thu, 23 Mar 2023 13:54:57 +0000 Subject: [PATCH] gitignore for pa4 --- .gitignore | 4 ++++ assignments/PA4/Makefile | 2 +- assignments/PA4/ast-lex.d | 5 ----- assignments/PA4/ast-parse.d | 6 ------ assignments/PA4/cool-tree.d | 5 ----- assignments/PA4/dumptype.d | 6 ------ assignments/PA4/handle_flags.d | 3 --- assignments/PA4/semant-phase.d | 5 ----- assignments/PA4/semant.d | 6 ------ assignments/PA4/stringtab.d | 4 ---- assignments/PA4/symtab_example.d | 3 --- assignments/PA4/tree.d | 3 --- assignments/PA4/utilities.d | 6 ------ 13 files changed, 5 insertions(+), 53 deletions(-) delete mode 100644 assignments/PA4/ast-lex.d delete mode 100644 assignments/PA4/ast-parse.d delete mode 100644 assignments/PA4/cool-tree.d delete mode 100644 assignments/PA4/dumptype.d delete mode 100644 assignments/PA4/handle_flags.d delete mode 100644 assignments/PA4/semant-phase.d delete mode 100644 assignments/PA4/semant.d delete mode 100644 assignments/PA4/stringtab.d delete mode 100644 assignments/PA4/symtab_example.d delete mode 100644 assignments/PA4/tree.d delete mode 100644 assignments/PA4/utilities.d diff --git a/.gitignore b/.gitignore index 4d8418b..2d9cfcf 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,7 @@ assignments/PA3/cool.tab.h assignments/PA3/cool-parse.cc *.d grading/ +assignments/PA4/cgen +assignments/PA4/parser +assignments/PA4/semant +assignments/PA4/lexer \ No newline at end of file diff --git a/assignments/PA4/Makefile b/assignments/PA4/Makefile index ded678a..552b74c 100644 --- a/assignments/PA4/Makefile +++ b/assignments/PA4/Makefile @@ -26,7 +26,7 @@ BFLAGS = -d -v -y -b cool --debug -p cool_yy ASTBFLAGS = -d -v -y -b ast --debug -p ast_yy CC=g++ -CFLAGS=-g -Wall -Wno-unused -Wno-write-strings -Wno-deprecated ${CPPINCLUDE} -DDEBUG +CFLAGS=-g -Wall -Wno-unused -Wno-write-strings -Wno-deprecated ${CPPINCLUDE} -DDEBUG -std=c++11 FLEX=flex ${FFLAGS} BISON= bison ${BFLAGS} DEPEND = ${CC} -MM ${CPPINCLUDE} diff --git a/assignments/PA4/ast-lex.d b/assignments/PA4/ast-lex.d deleted file mode 100644 index 1c3d9e8..0000000 --- a/assignments/PA4/ast-lex.d +++ /dev/null @@ -1,5 +0,0 @@ -ast-lex.o ast-lex.d : ast-lex.cc ../../include/PA4/ast-parse.h \ - ../../include/PA4/copyright.h ../../include/PA4/cool-io.h \ - ../../include/PA4/tree.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/stringtab.h \ - ../../include/PA4/utilities.h diff --git a/assignments/PA4/ast-parse.d b/assignments/PA4/ast-parse.d deleted file mode 100644 index 7252f46..0000000 --- a/assignments/PA4/ast-parse.d +++ /dev/null @@ -1,6 +0,0 @@ -ast-parse.o ast-parse.d : ast-parse.cc ../../include/PA4/cool-io.h \ - ../../include/PA4/copyright.h cool-tree.h ../../include/PA4/tree.h \ - ../../include/PA4/stringtab.h ../../include/PA4/list.h \ - ../../include/PA4/cool-io.h cool-tree.handcode.h \ - ../../include/PA4/cool.h ../../include/PA4/stringtab.h \ - ../../include/PA4/utilities.h diff --git a/assignments/PA4/cool-tree.d b/assignments/PA4/cool-tree.d deleted file mode 100644 index 68600d6..0000000 --- a/assignments/PA4/cool-tree.d +++ /dev/null @@ -1,5 +0,0 @@ -cool-tree.o cool-tree.d : cool-tree.cc ../../include/PA4/tree.h \ - ../../include/PA4/copyright.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/cool-io.h \ - cool-tree.handcode.h ../../include/PA4/cool.h \ - ../../include/PA4/stringtab.h cool-tree.h diff --git a/assignments/PA4/dumptype.d b/assignments/PA4/dumptype.d deleted file mode 100644 index 91d3c70..0000000 --- a/assignments/PA4/dumptype.d +++ /dev/null @@ -1,6 +0,0 @@ -dumptype.o dumptype.d : dumptype.cc ../../include/PA4/copyright.h \ - ../../include/PA4/cool.h ../../include/PA4/copyright.h \ - ../../include/PA4/cool-io.h ../../include/PA4/tree.h \ - ../../include/PA4/stringtab.h ../../include/PA4/list.h cool-tree.h \ - cool-tree.handcode.h ../../include/PA4/stringtab.h \ - ../../include/PA4/utilities.h diff --git a/assignments/PA4/handle_flags.d b/assignments/PA4/handle_flags.d deleted file mode 100644 index 9af465f..0000000 --- a/assignments/PA4/handle_flags.d +++ /dev/null @@ -1,3 +0,0 @@ -handle_flags.o handle_flags.d : handle_flags.cc ../../include/PA4/copyright.h \ - ../../include/PA4/cool-io.h ../../include/PA4/copyright.h \ - ../../include/PA4/cgen_gc.h diff --git a/assignments/PA4/semant-phase.d b/assignments/PA4/semant-phase.d deleted file mode 100644 index 7e05899..0000000 --- a/assignments/PA4/semant-phase.d +++ /dev/null @@ -1,5 +0,0 @@ -semant-phase.o semant-phase.d : semant-phase.cc cool-tree.h ../../include/PA4/tree.h \ - ../../include/PA4/copyright.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/cool-io.h \ - cool-tree.handcode.h ../../include/PA4/cool.h \ - ../../include/PA4/stringtab.h diff --git a/assignments/PA4/semant.d b/assignments/PA4/semant.d deleted file mode 100644 index 9d5ee48..0000000 --- a/assignments/PA4/semant.d +++ /dev/null @@ -1,6 +0,0 @@ -semant.o semant.d : semant.cc semant.h cool-tree.h ../../include/PA4/tree.h \ - ../../include/PA4/copyright.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/cool-io.h \ - cool-tree.handcode.h ../../include/PA4/cool.h \ - ../../include/PA4/stringtab.h ../../include/PA4/symtab.h \ - ../../include/PA4/list.h ../../include/PA4/utilities.h diff --git a/assignments/PA4/stringtab.d b/assignments/PA4/stringtab.d deleted file mode 100644 index 318cb3b..0000000 --- a/assignments/PA4/stringtab.d +++ /dev/null @@ -1,4 +0,0 @@ -stringtab.o stringtab.d : stringtab.cc ../../include/PA4/copyright.h \ - ../../include/PA4/stringtab_functions.h ../../include/PA4/copyright.h \ - ../../include/PA4/cool-io.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/stringtab.h diff --git a/assignments/PA4/symtab_example.d b/assignments/PA4/symtab_example.d deleted file mode 100644 index d5fe4e5..0000000 --- a/assignments/PA4/symtab_example.d +++ /dev/null @@ -1,3 +0,0 @@ -symtab_example.o symtab_example.d : symtab_example.cc ../../include/PA4/symtab.h \ - ../../include/PA4/copyright.h ../../include/PA4/list.h \ - ../../include/PA4/cool-io.h diff --git a/assignments/PA4/tree.d b/assignments/PA4/tree.d deleted file mode 100644 index 92bd6ba..0000000 --- a/assignments/PA4/tree.d +++ /dev/null @@ -1,3 +0,0 @@ -tree.o tree.d : tree.cc ../../include/PA4/copyright.h ../../include/PA4/tree.h \ - ../../include/PA4/copyright.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/cool-io.h diff --git a/assignments/PA4/utilities.d b/assignments/PA4/utilities.d deleted file mode 100644 index f74fa22..0000000 --- a/assignments/PA4/utilities.d +++ /dev/null @@ -1,6 +0,0 @@ -utilities.o utilities.d : utilities.cc ../../include/PA4/copyright.h \ - ../../include/PA4/cool-io.h ../../include/PA4/copyright.h \ - ../../include/PA4/cool-parse.h ../../include/PA4/cool-io.h \ - ../../include/PA4/tree.h ../../include/PA4/stringtab.h \ - ../../include/PA4/list.h ../../include/PA4/stringtab.h \ - ../../include/PA4/utilities.h