diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-10-24 01:28:24 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-10-24 01:28:24 +0000 |
| commit | ac1cb4fadf31b06e25ea698dd5ceff4452aaf5e9 (patch) | |
| tree | e12d45df10c17f453fc10a91250966029806dcc5 /lldb/source/Host/Makefile | |
| parent | 0722f08da34e6b48bac988252dfa7c229a5ca0f6 (diff) | |
| download | bcm5719-llvm-ac1cb4fadf31b06e25ea698dd5ceff4452aaf5e9.tar.gz bcm5719-llvm-ac1cb4fadf31b06e25ea698dd5ceff4452aaf5e9.zip | |
Add initial gmake glue for the NetBSD platform
Summary:
These changes aren't everything what is needed for the autotools target, but it's significantly approaching it.
These changes shouldn't effect the build process on other platforms.
Patch by Kamil Rytarowski, thanks!
Reviewers: joerg, brucem
Subscribers: brucem, tberghammer, danalbert, srhines, lldb-commits
Differential Revision: http://reviews.llvm.org/D13715
llvm-svn: 251171
Diffstat (limited to 'lldb/source/Host/Makefile')
| -rw-r--r-- | lldb/source/Host/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Host/Makefile b/lldb/source/Host/Makefile index 5b88ba6e1eb..34652959e95 100644 --- a/lldb/source/Host/Makefile +++ b/lldb/source/Host/Makefile @@ -43,6 +43,11 @@ $(eval $(call DIR_SOURCES,posix)) $(eval $(call DIR_SOURCES,freebsd)) endif +ifeq ($(HOST_OS),NetBSD) +$(eval $(call DIR_SOURCES,posix)) +$(eval $(call DIR_SOURCES,netbsd)) +endif + ifeq ($(HOST_OS),MingW) $(eval $(call DIR_SOURCES,windows)) endif |

