From f66f25dbc2fbbf964c4bbc229148cc5b008adf78 Mon Sep 17 00:00:00 2001 From: Jeff Donahue Date: Sat, 10 May 2014 17:20:19 -0700 Subject: [PATCH] fix Makefile bug - HXX_SRCS was things that don't end in .hpp, instead of things that do... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 619d139..3863fbf 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ STATIC_NAME := $(LIB_BUILD_DIR)/lib$(PROJECT).a # CXX_SRCS are the source files excluding the test ones. CXX_SRCS := $(shell find src/$(PROJECT) ! -name "test_*.cpp" -name "*.cpp") # HXX_SRCS are the header files -HXX_SRCS := $(shell find include/$(PROJECT) ! -name "*.hpp") +HXX_SRCS := $(shell find include/$(PROJECT) -name "*.hpp") # CU_SRCS are the cuda source files CU_SRCS := $(shell find src/$(PROJECT) -name "*.cu") # TEST_SRCS are the test source files -- 2.7.4