summaryrefslogtreecommitdiffhomepage
path: root/project/extras.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-09-25 22:17:03 -0400
committermidipix <writeonce@midipix.org>2015-09-26 11:10:25 -0400
commit18eb4842536d1c9df278e7f65c16ce5679b99d39 (patch)
tree8ba10e3d909ead6f145d442342fed5cfa6277e6f /project/extras.mk
parent712b5fd9b720c18cc53d5627566525b96da3163f (diff)
downloadpemagine-18eb4842536d1c9df278e7f65c16ce5679b99d39.tar.bz2
pemagine-18eb4842536d1c9df278e7f65c16ce5679b99d39.tar.xz
makefile replacement: step 2/2: use the midipix build template.
Diffstat (limited to 'project/extras.mk')
-rw-r--r--project/extras.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/project/extras.mk b/project/extras.mk
new file mode 100644
index 0000000..2af3716
--- /dev/null
+++ b/project/extras.mk
@@ -0,0 +1,15 @@
+CFLAGS_SHARED_ATTR += -DPE_BUILD
+CFLAGS_STATIC_ATTR += -DPE_STATIC
+
+CFLAGS_CONFIG += -DMIDIPIX_FREESTANDING -ffreestanding -D__NT$(HOST_BITS)
+CFLAGS_CONFIG += -UWIN32 -U_WIN32 -U__WIN32 -U__WIN32__
+CFLAGS_CONFIG += -UWIN64 -U_WIN64 -U__WIN64 -U__WIN64__
+
+LDFLAGS_SHARED += --out-implib $(SHARED_IMPLIB)
+LDFLAGS_SHARED += --exclude-all-symbols
+
+ifeq ($(HOST_BITS),32)
+ LDFLAGS_SHARED += --entry $(HOST_UNDERSCORE)pe_lib_entry_point@12
+else
+ LDFLAGS_SHARED += --entry $(HOST_UNDERSCORE)pe_lib_entry_point
+endif