From a9b6f1b169a73cc84934af47b96bb9c0401b2ae1 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 4 Jun 2024 18:54:34 +0200 Subject: [PATCH] fix makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cbe2f35..d04c40e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ SRC_DIR = src PARSER_DIR = src/parser BIN_DIR = out MAIN_CLASS = com.clp.project.Main -SOURCES = $(wildcard $(SRC_DIR)/*.java $(SRC_DIR)/*/*.java) +PARSEALL_CLASS = com.clp.project.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 DATE = $(shell date +%Y%m%d-%H%M%S)