Files
Makefiles/Makefile
T

333 lines
8.3 KiB
Makefile

#
# Makefile
#
# ---------- Base Defines ----------
ROOTPATH := $(shell git rev-parse --show-toplevel)
COMMANDLINE := $(shell ps -o args= $$PPID)
# ---------- Architectures ----------
ARCHS := $(shell ls $(ROOTPATH)/Makefiles/Makefile.conf.* | grep -v base | sed 's/.*Makefile\.conf\.//g')
ARCHS += any
-include $(ROOTPATH)/Makefiles/Makefile.aliases
ARCHS := $(filter-out any,$(ARCHS))
ifeq (,$(findstring -S,$(COMMANDLINE)))
ifneq ($(ARCH),)
$(info ARCH: $(ARCH))
endif
endif
# ---------- Defines ----------
DATETIME := `date +'%y%m%d-%H%M'`
MAKEFILEPATH := $(strip $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))))
PID := $(shell echo $$$$)
PREFIX = nice -n 19 /usr/bin/time --format='%E (%U)' -o /dev/shm/t-$(PID)
POSTFIX = && cat /dev/shm/t-$(PID) | xargs -I "%" echo -en '\033[1A\033[100D\033[60C' "%\n" && rm -f /dev/shm/t-$(PID)
ARNAME = $(notdir $(CURDIR)).a.$(ARCH)_
SUBDIRS := $(wildcard */.)
SUBDIRS := $(foreach dir,$(SUBDIRS),$(subst /.,,$(dir)))
FILTER = crash% doc% include% lib% Libraries% Makefiles%
SUBDIRS := $(filter-out $(FILTER),$(SUBDIRS))
SUBDIRARS = $(foreach dir,$(SUBDIRS),$(dir)/$(dir).a)
SUBDIRS := $(foreach dir,$(SUBDIRS),$(dir)_DIRECTORY)
LOCALSOURCES = $(wildcard *.cpp *.cc)
LOCALOBJECTS := $(LOCALSOURCES:.cpp=.o.$(ARCH))
LOCALOBJECTS := $(LOCALOBJECTS:.cc=.o.$(ARCH))
LOCALDEPENDS = $(LOCALOBJECTS:.o.$(ARCH)=.d.$(ARCH))
SOURCES = $(wildcard *.cpp */*.cpp */*/*.cpp */*/*/*.cpp)
FILTER = Libraries%
SOURCES := $(filter-out $(FILTER),$(SOURCES))
REALOBJECTS := $(SOURCES:.cpp=.o.$(ARCH))
DEPENDS = $(REALOBJECTS:.o.$(ARCH)=.d.$(ARCH))
OBJECTS := RECURSIVE_PHONY
OBJECTS += $(REALOBJECTS)
LIBRARIES =
LIBFILES =
TARGETS =
# ---------- Recursive Targets ----------
.PHONY: RECURSIVE_PHONY
$(LOCALOBJECTS): | $(SUBDIRS)
$(OBJECTS): | $(SUBDIRS)
artifacts: $(LOCALOBJECTS)
.DEFAULT_GOAL := artifacts
# ---------- Includes ----------
-include $(ROOTPATH)/Makefiles/Makefile.conf.$(ARCH)
-include $(ROOTPATH)/Makefiles/Makefile.conf.base
-include $(ROOTPATH)/Makefile.conf
# ---------- Libraries ----------
define build_target_library_arch
$(eval $@_DATETIME := $(DATETIME))
@echo -n " [AR] $(1)\n"
@$(PREFIX) $(AR) -crs $(1) $(2) $(POSTFIX)
@mkdir -p $(ROOTPATH)/lib/$(ARCH)
@mv $(1) $$(echo $(ROOTPATH)/lib/$(ARCH)/lib$(1) | sed 's/\.$(ARCH)//g')
endef
define add_target_library_arch
$(1).$(ARCH): $$(OBJECTS) $$(LIBFILES)
$$(call build_target_library_arch,$$@,$$(REALOBJECTS) $$(LIBFILES))
endef
define add_library
LIBFILES += $(ROOTPATH)/Libraries/$(1)/lib/$(ARCH)/lib$(1).a
LFLAGS += -l$(1)
LFLAGS += -L$(ROOTPATH)/Libraries/$(1)/lib/$(ARCH)
CFLAGS += -I$(ROOTPATH)/Libraries/$(1)/include
endef
$(foreach library,$(LIBRARIES),$(eval $(call add_library,$(library))))
# ---------- Targets ----------
define build_target_arch
$(eval $@_DATETIME := $(DATETIME))
@echo -n " [LD] $(1)\n"
@$(PREFIX) $(CC) -o $(1) $(2) $(LFLAGS) $(CFLAGS) $(POSTFIX)
@if [ -d "$(DEBUGDIR)" ]; then \
$(OBJCOPY) --only-keep-debug $(1) $(DEBUGDIR)/$(1)-$($@_DATETIME).debug; \
$(STRIP) $(SFLAGS) $(1); \
$(OBJCOPY) --add-gnu-debuglink="$(DEBUGDIR)/$(1)-$($@_DATETIME).debug" $(1); \
chmod -x $(DEBUGDIR)/$(1)-$($@_DATETIME).debug; \
fi
endef
define build_target
@if [ "$(ARCH)" = "any" ]; then \
for arch in $(ARCHS); do \
echo "ARCH: $$arch"; \
$(MAKE) -s -S $(1) $$arch; \
done; \
true; \
else \
$(MAKE) -s -S $(1).$(ARCH) $(ARCH); \
fi
endef
define add_target_test_arch
$(1).$(ARCH): $$(OBJECTS) $$(LIBFILES) Test/Test.o.$(ARCH)
$$(call build_target_arch,$$@,$$(REALOBJECTS) $$(LIBFILES) Test/Test.o.$(ARCH))
endef
define add_target_arch
$(1).$(ARCH): $$(OBJECTS) $$(LIBFILES) Application/$(strip $(1)).o.$(ARCH)
$$(call build_target_arch,$$@,$$(REALOBJECTS) $$(LIBFILES) Application/$(strip $(1)).o.$(ARCH))
endef
define add_target
ifeq ($(.DEFAULT_GOAL),artifacts)
.DEFAULT_GOAL := $(1)
endif
ifneq (,$$(findstring .a,$(1)))
$$(eval $$(call add_target_library_arch, $(1)))
else
ifeq ($(1),test)
$$(eval $$(call add_target_test_arch, $(1)))
else
$$(eval $$(call add_target_arch, $(1)))
endif
endif
$(1):
$$(call build_target,$$@)
endef
$(foreach target,$(TARGETS),$(eval $(call add_target,$(target))))
ifneq ($(MAKECMDGOALS),clean)
-include $(LOCALDEPENDS)
endif
# ---------- Object Rules ----------
%.d.$(ARCH): %.cpp
@if [ "$(ARCH)" != "any" ]; then \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true; \
echo -n " [MM] $@\n"; \
$(PREFIX) $(CC) $(CFLAGS) $< -MM -MT $(@:.d.$(ARCH)=.o.$(ARCH)) >$@ $(POSTFIX); \
fi
%.o.$(ARCH): %.cpp
@depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true
@echo -n " [CC] $@\n"
@$(PREFIX) $(CC) -c $(CFLAGS) $< -o $@ $(POSTFIX)
%.d.$(ARCH): %.cc
@if [ "$(ARCH)" != "any" ]; then \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true; \
echo -n " [MM] $@\n"; \
$(PREFIX) $(CC) $(CFLAGS) $< -MM -MT $(@:.d.$(ARCH)=.o.$(ARCH)) >$@ $(POSTFIX); \
fi
%.o.$(ARCH): %.cc
@depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true
@echo -n " [CC] $@\n"
@$(PREFIX) $(CC) -c $(CFLAGS) $< -o $@ $(POSTFIX)
$(ARNAME): $(SUBDIRS) $(LOCALOBJECTS)
@depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true
@echo -n " [AR] $@\n"
@$(PREFIX) $(AR) rcuT $@ $(LOCALOBJECTS) $(SUBDIRARS) $(POSTFIX)
# ---------- Recursive Rules ----------
.PHONY: $(SUBDIRS)
$(SUBDIRS):
$(eval DIR := $(subst _DIRECTORY,,$@))
@if [ -e "$(DIR)/Makefile" ]; then \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true; \
echo " <$(DIR)>"; \
if ($(MAKE) -s -S -C $(DIR) artifacts $(ARCH)); then \
:; \
else \
exit $$?; \
fi; \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
true; \
echo " </$(DIR)>"; \
fi
# ---------- Clean Rules ----------
.PHONY: clean
clean:
@if [ "$(ARCH)" = "any" ]; then \
for arch in $(ARCHS); do \
echo "ARCH: $$arch"; \
$(MAKE) -s -S $(MAKECMDGOALS) $$arch; \
done; \
true; \
else \
for dir in $(SUBDIRS); do \
dir=$${dir%_DIRECTORY}; \
if [ -e "$$dir/Makefile" ]; then \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
echo " <$$dir>"; \
$(MAKE) -s -S -C $$dir $@ $(ARCH); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
echo " </$$dir>"; \
fi \
done; \
for target in $(TARGETS); do \
rm -f $$target.$(ARCH); \
done; \
rm -f lib/$(ARCH)/*; \
true; \
fi
@rm -f $(LOCALOBJECTS) $(LOCALDEPENDS) || true
.PHONY: cleandeps
cleandeps:
@if [ "$(ARCH)" = "any" ]; then \
for arch in $(ARCHS); do \
echo "ARCH: $$arch"; \
$(MAKE) -s -S $(MAKECMDGOALS) $$arch; \
done; \
true; \
else \
for dir in $(SUBDIRS); do \
dir=$${dir%_DIRECTORY}; \
if [ -e "$$dir/Makefile" ]; then \
depth=$(MAKELEVEL); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
echo " <$$dir>"; \
$(MAKE) -s -S -C $$dir $@ $(ARCH); \
while [ $${depth} -gt 0 ] ; do \
echo -n " "; \
depth=`expr $$depth - 1`; \
done; \
echo " </$$dir>"; \
fi \
done; \
for target in $(TARGETS); do \
rm -f $$target.$(ARCH); \
done; \
true; \
fi
@rm -f $(LOCALDEPENDS) || true
# ---------- Architecture Rules ----------
.PHONY: $(ARCH)
$(ARCH):
@if [ "$(words $(MAKECMDGOALS))" = "0" ]; then \
if [ "$(ARCH)" = "any" ]; then \
for arch in $(ARCHS); do \
echo "ARCH: $$arch"; \
$(MAKE) -s -S $(.DEFAULT_GOAL) $$arch; \
done; \
true; \
else \
$(MAKE) -s -S $(.DEFAULT_GOAL) $(ARCH); \
fi \
fi
# ---------- All Rule ----------
.PHONY: all
all: $(TARGETS)