diff options
author | Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> | 2024-06-24 15:37:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 15:37:12 +0200 |
commit | 54b2c77e6875c1abb3d73fdfd0de924e75633087 (patch) | |
tree | 2be8d3ff7ac912c85c31637babb055efb344ae98 /Makefile | |
parent | 8e7089a5d6ba1f4f50a90133bb50bc5c6c554aff (diff) |
Package refactoring to avoid verbose paths (#4)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |