Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
boozec committed Jun 4, 2024
1 parent e1729ee commit a9b6f1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a9b6f1b

Please sign in to comment.