aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 21:51:58 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 21:51:58 +0300
commita929e68d37e3d8ef4a6fbeda39b9d2c6c8170206 (patch)
treeb8c496f1f9b9572ed5d9ca3d5d71a40428e76f6e /Makefile
parent01052811be08444458576dda994d15f8823560ea (diff)
downloadposthaste-a929e68d37e3d8ef4a6fbeda39b9d2c6c8170206.tar.gz
posthaste-a929e68d37e3d8ef4a6fbeda39b9d2c6c8170206.zip
initial working ejit config
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d660d2..f1a93cb 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ all: setup
$(MAKE) -f scripts/makefile $<
.PHONY:
-setup:
+setup: deps
@echo -n > deps.mk
@./scripts/gen-deps -p POSTHASTE -c COMPILE_POSTHASTE -b posthaste \
"${POSTHASTE_SOURCES}"
@@ -32,6 +32,7 @@ RM = rm
.PHONY: clean
clean:
$(RM) -rf $(CLEANUP)
+ $(MAKE) -C deps/ejit clean
.PHONY: clean_docs
clean_docs:
@@ -39,3 +40,7 @@ clean_docs:
.PHONY: clean_all
clean_all: clean clean_docs
+
+.PHONY: deps
+deps:
+ $(MAKE) -C deps/ejit