remove silly thing where I copied proto headers to a separate
authorJeff Donahue <jeff.donahue@gmail.com>
Mon, 31 Mar 2014 21:25:42 +0000 (14:25 -0700)
committerJeff Donahue <jeff.donahue@gmail.com>
Wed, 2 Apr 2014 17:58:49 +0000 (10:58 -0700)
build/include dir

Makefile

index a84d3b0..b9688d7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ TOOL_SRCS := $(shell find tools -name "*.cpp")
 # EXAMPLE_SRCS are the source files for the example binaries
 EXAMPLE_SRCS := $(shell find examples -name "*.cpp")
 # BUILD_INCLUDE_DIR contains any generated header files we want to include.
-BUILD_INCLUDE_DIR := $(BUILD_DIR)/include
+BUILD_INCLUDE_DIR := $(BUILD_DIR)/src
 # PROTO_SRCS are the protocol buffer definitions
 PROTO_SRC_DIR := src/$(PROJECT)/proto
 PROTO_SRCS := $(wildcard $(PROTO_SRC_DIR)/*.proto)
@@ -316,10 +316,6 @@ $(PROTO_BUILD_DIR)/%.pb.cc $(PROTO_BUILD_DIR)/%.pb.h : \
        protoc --proto_path=src --cpp_out=build/src $<
        @ echo
 
-$(PROTO_BUILD_INCLUDE_DIR)/%.pb.h: $(PROTO_BUILD_DIR)/%.pb.h \
-               | $(PROTO_BUILD_INCLUDE_DIR)
-       @ cp $(PROTO_BUILD_DIR)/$(*F).pb.h $(PROTO_BUILD_INCLUDE_DIR)/$(*F).pb.h
-
 $(PY_PROTO_BUILD_DIR)/%_pb2.py : $(PROTO_SRC_DIR)/%.proto \
                $(PY_PROTO_INIT) | $(PY_PROTO_BUILD_DIR)
        protoc --proto_path=src --python_out=python $<