diff options
Diffstat (limited to 'project/headers.mk')
-rw-r--r-- | project/headers.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/project/headers.mk b/project/headers.mk index c5ae8b6..9c2fcaa 100644 --- a/project/headers.mk +++ b/project/headers.mk @@ -7,7 +7,12 @@ INTERNAL_HEADERS = \ $(SOURCE_DIR)/src/internal/$(PACKAGE)_dprintf_impl.h \ $(SOURCE_DIR)/src/internal/$(PACKAGE)_driver_impl.h \ $(SOURCE_DIR)/src/internal/$(PACKAGE)_errinfo_impl.h \ + $(SOURCE_DIR)/src/internal/$(PACKAGE)_regex_impl.h \ $(SOURCE_DIR)/src/internal/$(PACKAGE)_tmpfile_impl.h \ $(SOURCE_DIR)/src/internal/$(PACKAGE)_visibility_impl.h \ -ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) +INTERNAL_UNIT_HEADERS = \ + $(SOURCE_DIR)/src/regex/tbnf_regex_defs.h \ + $(SOURCE_DIR)/src/regex/tbnf_regex_scanfns.h \ + +ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) $(INTERNAL_UNIT_HEADERS) |