summaryrefslogtreecommitdiff
path: root/cpp/Makefile
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-10-16 14:12:49 +0000
committerAlan Conway <aconway@apache.org>2006-10-16 14:12:49 +0000
commitb90ceab30a9f2040a868e76c90af47f09b4cbbb2 (patch)
treee7718b521cb30403fed1881b3154e88666bdaa0f /cpp/Makefile
parent8a6ab3aa61d441b9210c05c84dc9998acfc38737 (diff)
downloadqpid-python-b90ceab30a9f2040a868e76c90af47f09b4cbbb2.tar.gz
Renamed unit tests to follow naming conventions, fixed some #include inconsistencies.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464503 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/Makefile')
-rw-r--r--cpp/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/Makefile b/cpp/Makefile
index 586a934cce..15d73b4bd9 100644
--- a/cpp/Makefile
+++ b/cpp/Makefile
@@ -53,10 +53,6 @@ XSL := code_gen.xsl framing.xsl
STYLESHEETS := $(XSL:%=$(CURDIR)/etc/stylesheets/%)
TRANSFORM := java -jar $(CURDIR)/tools/saxon8.jar -o results.out $(SPEC)
-.PHONY: generate
-
-generate: gen/timestamp
-
# Restart make if code is re-generated to get proper dependencies.
# Remove "clean" to avoid infinite loop.
REMAKE := exec $(MAKE) $(MAKECMDGOALS:clean=)
@@ -78,7 +74,7 @@ LIB_CMD = $(CXX) -shared -o $@ $(LDFLAGS) $(CXXFLAGS) -lapr-1
COMMON_LIB := lib/libqpid_common.so.1.0
COMMON_DIRS := qpid/concurrent qpid/framing qpid/io qpid
COMMON_SRC := $(wildcard gen/qpid/framing/*.cpp $(COMMON_DIRS:%=src/%/*.cpp))
-$(COMMON_LIB): generate $(COMMON_SRC:.cpp=.o)
+$(COMMON_LIB): gen/timestamp $(COMMON_SRC:.cpp=.o)
$(LIB_CMD) $(COMMON_SRC:.cpp=.o)
all: $(COMMON_LIB)
UNITTESTS := $(UNITTESTS) $(wildcard $(COMMON_DIRS:%=test/unit/%/*Test.cpp))