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
|
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
APE = o/$(MODE)/ape/ape.o \
|
2020-06-15 14:18:57 +00:00
|
|
|
|
o/$(MODE)/ape/ape.lds
|
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
APE_NO_MODIFY_SELF = \
|
|
|
|
|
o/$(MODE)/ape/ape.lds \
|
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o
|
2021-08-12 07:42:14 +00:00
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
APELINK = \
|
2021-02-08 12:04:42 +00:00
|
|
|
|
$(COMPILE) \
|
2021-02-20 06:20:38 +00:00
|
|
|
|
-ALINK.ape \
|
2020-06-16 02:01:28 +00:00
|
|
|
|
$(LINK) \
|
|
|
|
|
$(LINKARGS) \
|
2021-02-08 17:19:00 +00:00
|
|
|
|
$(OUTPUT_OPTION)
|
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))
|
2021-02-02 11:45:31 +00:00
|
|
|
|
APE_INCS = $(filter %.inc,$(APE_FILES))
|
2021-10-02 15:17:04 +00:00
|
|
|
|
APE_SRCS_C = ape/loader.c
|
|
|
|
|
APE_SRCS_S = $(filter %.S,$(APE_FILES))
|
|
|
|
|
APE_SRCS = $(APE_SRCS_C) $(APE_SRCS_S)
|
|
|
|
|
APE_OBJS = $(APE_SRCS_S:%.S=o/$(MODE)/%.o)
|
2020-06-16 02:01:28 +00:00
|
|
|
|
APE_CHECKS = $(APE_HDRS:%=o/%.ok)
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2021-02-08 12:04:42 +00:00
|
|
|
|
o/$(MODE)/ape/ape.lds: \
|
|
|
|
|
ape/ape.lds \
|
|
|
|
|
ape/macros.internal.h \
|
|
|
|
|
libc/dce.h \
|
|
|
|
|
libc/zip.h
|
|
|
|
|
|
2020-06-16 02:01:28 +00:00
|
|
|
|
o/ape/idata.inc: \
|
2020-11-25 16:19:00 +00:00
|
|
|
|
ape/idata.internal.h \
|
2020-06-16 02:01:28 +00:00
|
|
|
|
ape/relocations.h
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o: ape/ape.S o/$(MODE)/ape/loader.elf
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -DAPE_LOADER="\"o/$(MODE)/ape/loader.elf\"" -DAPE_NO_MODIFY_SELF $<
|
|
|
|
|
|
|
|
|
|
o/$(MODE)/ape/loader.o: ape/loader.c
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) $(cpp.flags) -fpie -Os -ffreestanding -mno-red-zone -fno-ident -fno-gnu-unique -c $(OUTPUT_OPTION) $<
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/loader-gcc.asm: ape/loader.c
|
|
|
|
|
@$(COMPILE) -AOBJECTIFY.c $(CC) $(cpp.flags) -Os -ffreestanding -mno-red-zone -fno-ident -fno-gnu-unique -c -S $(OUTPUT_OPTION) $<
|
2021-04-08 04:01:57 +00:00
|
|
|
|
|
2021-10-02 15:17:04 +00:00
|
|
|
|
o/$(MODE)/ape/loader.elf: \
|
|
|
|
|
o/$(MODE)/ape/loader.o \
|
|
|
|
|
o/$(MODE)/ape/loader1.o \
|
|
|
|
|
ape/loader.lds
|
|
|
|
|
@$(ELFLINK) -s -z max-page-size=0x10
|
2021-08-12 07:42:14 +00:00
|
|
|
|
|
2020-06-15 14:18:57 +00:00
|
|
|
|
.PHONY: o/$(MODE)/ape
|
2021-04-08 04:01:57 +00:00
|
|
|
|
o/$(MODE)/ape: $(APE) \
|
|
|
|
|
$(APE_CHECKS) \
|
|
|
|
|
o/$(MODE)/ape/ape-no-modify-self.o
|