summaryrefslogtreecommitdiffhomepage
path: root/project/headers.mk
diff options
context:
space:
mode:
Diffstat (limited to 'project/headers.mk')
-rw-r--r--project/headers.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/project/headers.mk b/project/headers.mk
new file mode 100644
index 0000000..d89e2fd
--- /dev/null
+++ b/project/headers.mk
@@ -0,0 +1,19 @@
+API_HEADERS = \
+ $(PROJECT_DIR)/include/pemagine/pemagine.h \
+ $(PROJECT_DIR)/include/pemagine/pe_api.h \
+ $(PROJECT_DIR)/include/pemagine/pe_consts.h \
+ $(PROJECT_DIR)/include/pemagine/pe_inline_asm.h \
+ $(PROJECT_DIR)/include/pemagine/pe_structs.h \
+
+API_HEADERS_NT32 = \
+ $(PROJECT_DIR)/include/pemagine/bits/nt32/pe_inline_asm__gcc.h \
+ $(PROJECT_DIR)/include/pemagine/bits/nt32/pe_inline_asm__msvc.h \
+
+API_HEADERS_NT64 = \
+ $(PROJECT_DIR)/include/pemagine/bits/nt64/pe_inline_asm__gcc.h \
+ $(PROJECT_DIR)/include/pemagine/bits/nt64/pe_inline_asm__msvc.h \
+
+INTERNAL_HEADERS = \
+ $(PROJECT_DIR)/src/internal/pe_impl.h
+
+ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) $(API_HEADERS_NT32) $(API_HEADERS_NT64)