summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEmanuele Grasso <96300448+L0P0P@users.noreply.github.com>2024-06-24 15:37:12 +0200
committerGitHub <noreply@github.com>2024-06-24 15:37:12 +0200
commit54b2c77e6875c1abb3d73fdfd0de924e75633087 (patch)
tree2be8d3ff7ac912c85c31637babb055efb344ae98 /Makefile
parent8e7089a5d6ba1f4f50a90133bb50bc5c6c554aff (diff)
Package refactoring to avoid verbose paths (#4)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d04c40e..0a15718 100644
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,8 @@ JAVAC_FLAGS = -cp $(ANTLR_COMPLETE) -Xlint:deprecation -d out
SRC_DIR = src
PARSER_DIR = src/parser
BIN_DIR = out
-MAIN_CLASS = com.clp.project.Main
-PARSEALL_CLASS = com.clp.project.ParseAll
+MAIN_CLASS = Main
+PARSEALL_CLASS = ParseAll
SOURCES = $(wildcard $(SRC_DIR)/*.java $(SRC_DIR)/*/*.java $(SRC_DIR)/*/*/*.java)
GRAMMARS = $(PARSER_DIR)/Python3Lexer.g4 $(PARSER_DIR)/Python3Parser.g4
ANTLR_OUTPUT = $(PARSER_DIR)/*.java