summaryrefslogtreecommitdiffhomepage
path: root/project/headers.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-20 20:53:41 +0000
committermidipix <writeonce@midipix.org>2016-12-27 04:40:56 -0500
commit26e14f4143ec690a120e197a3adf547145e4ce59 (patch)
treee9e8b522de5abb14230c5f8e0825452f0c7ccb4b /project/headers.mk
parent70c49fc4ed3b2c3db68537f828c286241eeeee98 (diff)
downloadntux-26e14f4143ec690a120e197a3adf547145e4ce59.tar.bz2
ntux-26e14f4143ec690a120e197a3adf547145e4ce59.tar.xz
create free-standing, libpsxscl-based project skeleton.
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..c47901c
--- /dev/null
+++ b/project/headers.mk
@@ -0,0 +1,12 @@
+API_HEADERS = \
+ $(SOURCE_DIR)/include/$(PACKAGE)/ntux.h \
+ $(SOURCE_DIR)/include/$(PACKAGE)/ntux_api.h \
+
+INTERNAL_HEADERS = \
+ $(SOURCE_DIR)/src/internal/argv/argv.h \
+ $(SOURCE_DIR)/src/internal/$(PACKAGE)_driver_impl.h \
+ $(SOURCE_DIR)/src/internal/$(PACKAGE)_init_impl.h \
+ $(SOURCE_DIR)/src/internal/$(PACKAGE)_memfn_impl.h \
+ $(SOURCE_DIR)/src/internal/$(PACKAGE)_nolibc_impl.h \
+
+ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS)