summaryrefslogtreecommitdiffhomepage
path: root/project/headers.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-09-20 23:25:19 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:20 -0500
commitd40d138ed41ff78fc0347ce256f88d09f405ba37 (patch)
treef14c9e7d4974152aafa409ebdabc868852d793a0 /project/headers.mk
parentc145a8039d5d10ceb10714b94d376cf109308d47 (diff)
downloadperk-d40d138ed41ff78fc0347ce256f88d09f405ba37.tar.bz2
perk-d40d138ed41ff78fc0347ce256f88d09f405ba37.tar.xz
makefile replacement: step 2/2: use the midipix build template.
Diffstat (limited to 'project/headers.mk')
-rw-r--r--project/headers.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/project/headers.mk b/project/headers.mk
new file mode 100644
index 0000000..9762424
--- /dev/null
+++ b/project/headers.mk
@@ -0,0 +1,12 @@
+API_HEADERS = \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk_api.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk_consts.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk_meta.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk_output.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/perk_structs.h
+
+INTERNAL_HEADERS = \
+ $(PROJECT_DIR)/src/internal/$(PACKAGE)_impl.h
+
+ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS)