summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index ae0c9eb..b0f78b2 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -34,14 +34,17 @@ OBJS =
# Targets
release: $(addprefix Release/, $(addsuffix .o, $(OBJS)))
+ @${MAKE} -C bootstrap release
@${MAKE} -C core release
@${AR} ${ARFLAGS} $(RELEASE) Release/*
debug: $(addprefix Debug/, $(addsuffix .o, $(OBJS)))
+ @${MAKE} -C bootstrap debug
@${MAKE} -C core debug
@${AR} ${ARFLAGS} $(DEBUG) Debug/*
clean:
+ @${MAKE} -C bootstrap clean
@${MAKE} -C core clean
ifneq (${OBJS}, )
-@${RM} ${RMFLAGS} $(addprefix Release/, $(addsuffix .o, ${OBJS}))