Skip to content

Commit

Permalink
Fixed broken makefile - make: Nothing to be done for 'build-image
Browse files Browse the repository at this point in the history
  • Loading branch information
1NepuNep1 committed Jan 17, 2025
1 parent 4ddf7de commit 161048a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CURRENT_DIR := $(shell pwd)
ANTLR_VERSION = 4.13.2
COMMIT_HASH ?= 99ceb562485efe2cefe47db042606e38259640c6

.PHONY: build-image clean go python dotnet java all go_clean py_clean build-image
.PHONY: build-image clean go python dotnet java all go_clean py_clean

all: go python dotnet java

Expand All @@ -26,7 +26,7 @@ java: build-image
java -jar /antlr-${ANTLR_VERSION}-complete.jar -Dlanguage=Java -package yql.antlr4.parser -o java YQL.g4

build-image:
docker build --build-arg ANTLR_VERSION=$(ANTLR_VERSION) --build-arg COMMIT_HASH=$(COMMIT_HASH) -t $(IMAGE_NAME) .
docker build --build-arg ANTLR_VERSION=$(ANTLR_VERSION) --build-arg COMMIT_HASH=$(COMMIT_HASH) -t $(IMAGE_NAME) .

clean: go_clean python_clean dotnet_clean java_clean

Expand Down

0 comments on commit 161048a

Please sign in to comment.