summaryrefslogtreecommitdiffhomepage
path: root/project/headers.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-09-26 01:14:54 -0400
committermidipix <writeonce@midipix.org>2015-09-26 15:27:42 -0400
commit7b83a9160796bf2b80126655860096d4bec7f6ed (patch)
treee453071f8d6dfc8b225da60bd1f1bd8dc51ac6fc /project/headers.mk
parent275c478e45cf4bf74f82571afe5e5903e088a746 (diff)
downloadntapi-7b83a9160796bf2b80126655860096d4bec7f6ed.tar.bz2
ntapi-7b83a9160796bf2b80126655860096d4bec7f6ed.tar.xz
makefile replacement: step 2/2: use the midipix build template.
Diffstat (limited to 'project/headers.mk')
-rw-r--r--project/headers.mk77
1 files changed, 77 insertions, 0 deletions
diff --git a/project/headers.mk b/project/headers.mk
new file mode 100644
index 0000000..09b3e7c
--- /dev/null
+++ b/project/headers.mk
@@ -0,0 +1,77 @@
+API_HEADERS = \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_acl.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_argv.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_atom.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_atomic.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_auxv.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_blitter.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_crc32.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_daemon.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_debug.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_device.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_exception.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_file.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_fsctl.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_guid.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_hash.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_ioctl.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_ipc.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_istat.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_job.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_ldr.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_locale.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_memory.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_mount.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_object.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_os.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_pnp.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_port.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_process.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_profiling.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_registry.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_section.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_security.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_slist.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_socket.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_stat.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_statfs.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_status.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_string.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_sync.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_sysinfo.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_termios.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_thread.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_time.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_token.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_tty.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_unicode.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_uuid.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_vfd.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./nt_vmount.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./ntapi.h \
+
+API_HEADERS_BITS = \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/nt_atomic_inline_asm.h \
+
+API_HEADERS_I386 = \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/i386/nt_atomic_i386_asm__gcc.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/i386/nt_atomic_i386_asm__msvc.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/i386/nt_thread_i386.h \
+
+API_HEADERS_X86_64 = \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/x86_64/nt_atomic_x86_64_asm__gcc.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/x86_64/nt_atomic_x86_64_asm__msvc.h \
+ $(PROJECT_DIR)/include/$(PACKAGE)/./bits/x86_64/nt_thread_x86_64.h \
+
+INTERNAL_HEADERS = \
+ $(PROJECT_DIR)/src/internal/./ntapi_blitter.h \
+ $(PROJECT_DIR)/src/internal/./ntapi_context.h \
+ $(PROJECT_DIR)/src/internal/./ntapi_fnapi.h \
+ $(PROJECT_DIR)/src/internal/./ntapi_hash_table.h \
+ $(PROJECT_DIR)/src/internal/./ntapi_impl.h \
+ $(PROJECT_DIR)/src/internal/./ntapi_pty.h \
+
+ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) \
+ $(API_HEADERS_BITS) \
+ $(API_HEADERS_I386) \
+ $(API_HEADERS_X86_64) \