Skip to content

Commit 6525ddc

Browse files
committed
Add env makefile phony target
Signed-off-by: Evangelos Lamprou <vagos@lamprou.xyz>
1 parent 157c24f commit 6525ddc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: clean lint test
1+
.PHONY: clean env lint test
22

33
TARGET_EXEC ?= main
44

@@ -47,6 +47,10 @@ $(BUILD_DIR)/%.cpp.o: %.cpp
4747
clean:
4848
$(RM) -r $(BUILD_DIR)
4949

50+
env:
51+
docker build -t gzrbt .
52+
docker run --rm -it -v $(shell pwd):/app gzrbt /bin/bash
53+
5054
-include $(DEPS)
5155

5256
lint:

0 commit comments

Comments
 (0)