e9233b4712
--HG-- branch : dtrg-buildsystem rename : util/arch/build.mk => util/ego/build.mk
69 lines
1.7 KiB
Makefile
69 lines
1.7 KiB
Makefile
|
|
define build-platform-headers
|
|
$(call reset)
|
|
$(eval q := $D/include/$(strip $1))
|
|
$(call installto, $(PLATIND)/$(PLATFORM)/include/$(strip $1))
|
|
$(eval PLATFORM_HEADERS_$(PLATFORM) += $q)
|
|
endef
|
|
|
|
define build-platform-impl
|
|
$(call reset)
|
|
$(eval q := $D/descr)
|
|
$(call installto, $(PLATIND)/descr/$(PLATFORM))
|
|
|
|
$(foreach f, $(platform-headers), $(call build-platform-headers, $f))
|
|
|
|
$(eval PLATFORM_$(PLATFORM) := \
|
|
$(PLATIND)/descr/$(PLATFORM) \
|
|
$(PLATFORM_HEADERS_$(PLATFORM)) \
|
|
$(PLATDEP)/$(PLATFORM)/as \
|
|
$(PLATDEP)/$(PLATFORM)/ncg \
|
|
$(ARCHITECTURE_$(ARCH)))
|
|
|
|
# libsys
|
|
|
|
$(call reset)
|
|
$(foreach f, $(platform-libsys), $(call ackfile, $D/libsys/$f))
|
|
$(call acklibrary, $(LIBDIR)/$(PLATFORM)/libsys.a)
|
|
$(call installto, $(PLATIND)/$(PLATFORM)/libsys.a)
|
|
|
|
# libem
|
|
|
|
$(call reset)
|
|
$(eval objdir := $(PLATFORM))
|
|
$(eval ackflags += -Ih)
|
|
$(foreach f, $(arch-libem-$(ARCH)), $(call ackfile, mach/$(ARCH)/libem/$f))
|
|
$(call acklibrary, $(LIBDIR)/$(PLATFORM)/libem.a)
|
|
$(call installto, $(PLATIND)/$(PLATFORM)/libem.a)
|
|
|
|
# libend
|
|
|
|
$(call reset)
|
|
$(eval objdir := $(PLATFORM))
|
|
$(eval ackflags += -Ih)
|
|
$(foreach f, $(arch-libend-$(ARCH)), $(call ackfile, mach/$(ARCH)/libend/$f))
|
|
$(call acklibrary, $(LIBDIR)/$(PLATFORM)/libend.a)
|
|
$(call installto, $(PLATIND)/$(PLATFORM)/libend.a)
|
|
|
|
# The tools themselves
|
|
|
|
$(call build-as)
|
|
$(call build-ncg)
|
|
|
|
# Build top only if the architecture asks for it.
|
|
|
|
$(if $(arch-top-$(ARCH)), $(call build-top))
|
|
|
|
# Language runtimes
|
|
|
|
$(foreach runtime, $(RUNTIMES), $(build-runtime-$(runtime)))
|
|
|
|
# Install the ego descr file for this architecture
|
|
|
|
$(call build-ego-descr)
|
|
endef
|
|
|
|
build-platform = $(eval $(call build-platform-impl, $1))
|
|
|
|
|