fix Makefile bug - HXX_SRCS was things that don't end in .hpp, instead
authorJeff Donahue <jeff.donahue@gmail.com>
Sun, 11 May 2014 00:20:19 +0000 (17:20 -0700)
committerJeff Donahue <jeff.donahue@gmail.com>
Sun, 11 May 2014 00:20:19 +0000 (17:20 -0700)
of things that do...

Makefile

index 619d139..3863fbf 100644 (file)
--- 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