From 18eb4842536d1c9df278e7f65c16ce5679b99d39 Mon Sep 17 00:00:00 2001 From: midipix Date: Fri, 25 Sep 2015 22:17:03 -0400 Subject: makefile replacement: step 2/2: use the midipix build template. --- project/headers.mk | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 project/headers.mk (limited to 'project/headers.mk') 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) -- cgit v1.2.3