20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
defs: $(headers)
tool: $(binmods:%=%.tool)
lists = moddirs modules headers objects makefiles binaries binmods
dbg:
@echo -e lists: $(foreach var, $(lists), "\\n - \\e[1m$(var)\\e[m = $($(var))")
%.obj: %/makefile $(OUT)
cd $* && $(MAKE) obj
%.tool: %/makefile $(OUT)
cd $* && $(MAKE) tool
%.dbg: %/makefile $(OUT)
cd $* && $(MAKE) dbg
$(OUT)/libk.so: mods $(OUT)
$(CC) -shared -o $@ $(objects)
$(OUT)/libk.a: mods $(OUT)
# using `ar c` and ranlib here instead of
# `ar cs` in case `ar` isn't the GNU version
ar c $@ $(objects)
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
defs: $(headers)
tool: $(binmods:%=%.tool)
lists = moddirs modules headers objects makefiles binaries binmods
dbg:
@echo -e lists: $(foreach var, $(lists), "\\n - \\e[1m$(var)\\e[m = $($(var))")
%.obj: %/makefile ${TARGET}.calls $(OUT)
cd $* && $(MAKE) obj
%.tool: %/makefile $(OUT)
cd $* && $(MAKE) tool
%.dbg: %/makefile $(OUT)
cd $* && $(MAKE) dbg
%.calls: arch/makefile
cd arch && make calls.$*.s
$(OUT)/libk.so: mods $(OUT)
$(CC) -shared -o $@ $(objects)
$(OUT)/libk.a: mods $(OUT)
# using `ar c` and ranlib here instead of
# `ar cs` in case `ar` isn't the GNU version
ar c $@ $(objects)
|