-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
31 lines (26 loc) · 810 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DIRS = x86 kernel lib device memory filesystem network
include mk/Makefile.kernel
app:
@echo "[ACTION] start to compile application packages."; \
for _dir in `ls application`; \
do \
ZELDA=$(ZELDA) make -C application/$$_dir; \
done
app_install:
@echo "[ACTION] start to install application packages."; \
for _dir in `ls application`; \
do \
ZELDA=$(ZELDA) make install -C application/$$_dir; \
done
app_clean:
@echo "[ACTION] start to clean application packages."; \
for _dir in `ls application`; \
do \
ZELDA=$(ZELDA) make clean -C application/$$_dir; \
done
runtime_install:
@echo "[ACTION] start to compile native C lib and runtime."
@ZELDA=$(ZELDA) make -C runtime/
runtime_clean:
@echo "[ACTION] start to clean native C lib and runtime."
@ZELDA=$(ZELDA) make clean -C runtime/