2020-06-15 14:18:57 +00:00
|
|
|
|
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
|
|
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
|
|
|
|
#
|
|
|
|
|
# OVERVIEW
|
|
|
|
|
#
|
|
|
|
|
# αcτµαlly pδrταblε εxεcµταblε
|
|
|
|
|
#
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
#
|
|
|
|
|
# This file defines the libraries, runtimes, and build rules needed to
|
|
|
|
|
# create executables from your Linux workstation that'll run anywhere.
|
|
|
|
|
# Loading this package will make certain systemic modifications to the
|
|
|
|
|
# build like turning off the System V "Red Zone" optimization, because
|
|
|
|
|
# αcτµαlly pδrταblε εxεcµταblεs need to be able to run in kernelspace.
|
|
|
|
|
|
|
|
|
|
PKGS += APE
|
|
|
|
|
|
|
|
|
|
APE = $(APE_DEPS) \
|
|
|
|
|
$(APE_OBJS) \
|
|
|
|
|
o/$(MODE)/ape/ape.lds
|
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
APELINK = \
|
|
|
|
|
ACTION=LINK.ape \
|
2020-07-01 02:55:47 +00:00
|
|
|
|
$(MKDIR) \
|
|
|
|
|
$(dir $@) && \
|
2020-06-16 02:01:28 +00:00
|
|
|
|
$(LINK) \
|
|
|
|
|
$(LINKARGS) \
|
|
|
|
|
$(OUTPUT_OPTION) && \
|
|
|
|
|
$(STRIP) \
|
|
|
|
|
-X $@ && \
|
|
|
|
|
$(GZ) \
|
|
|
|
|
$(ZFLAGS) \
|
|
|
|
|
-f $@.map
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2020-07-01 02:55:47 +00:00
|
|
|
|
APECOPY = \
|
|
|
|
|
ACTION=OBJCOPY.ape \
|
|
|
|
|
TARGET=$@ \
|
|
|
|
|
build/do \
|
|
|
|
|
$(OBJCOPY) \
|
|
|
|
|
-SO binary \
|
|
|
|
|
$< \
|
|
|
|
|
$@
|
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
DEFAULT_COPTS += -mno-red-zone
|
|
|
|
|
DEFAULT_LDFLAGS += -z max-page-size=0x1000
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
APE_FILES := $(wildcard ape/*.*)
|
|
|
|
|
APE_HDRS = $(filter %.h,$(APE_FILES))
|
|
|
|
|
APE_SRCS = $(filter %.S,$(APE_FILES))
|
|
|
|
|
APE_OBJS = $(APE_SRCS:%.S=o/$(MODE)/%.o)
|
|
|
|
|
APE_DEPS = $(APE_LIB)
|
|
|
|
|
APE_CHECKS = $(APE_HDRS:%=o/%.ok)
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
|
|
o/%.com: o/%.com.dbg
|
2020-07-01 02:55:47 +00:00
|
|
|
|
@$(APECOPY)
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
o/ape/idata.inc: \
|
|
|
|
|
ape/idata.h \
|
|
|
|
|
ape/relocations.h
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
|
|
$(APE_OBJS): $(BUILD_FILES) \
|
|
|
|
|
ape/ape.mk
|
|
|
|
|
|
|
|
|
|
.PHONY: o/$(MODE)/ape
|
|
|
|
|
o/$(MODE)/ape: $(APE) \
|
|
|
|
|
$(APE_CHECKS) \
|
|
|
|
|
o/$(MODE)/ape/lib
|