← Back to team overview

nrtb-core team mailing list archive

[Branch ~fpstovall/nrtb/cpp_common] Rev 17: Corrected Makefile to include all dependencies.

 

------------------------------------------------------------
revno: 17
committer: fpstovall@xxxxxxxxx
branch nick: dev
timestamp: Wed 2010-12-29 09:47:26 -0500
message:
  Corrected Makefile to include all dependencies.
modified:
  common/point/Makefile


--
lp:~fpstovall/nrtb/cpp_common
https://code.launchpad.net/~fpstovall/nrtb/cpp_common

Your team NRTB Core is subscribed to branch lp:~fpstovall/nrtb/cpp_common.
To unsubscribe from this branch go to https://code.launchpad.net/~fpstovall/nrtb/cpp_common/+edit-subscription
=== modified file 'common/point/Makefile'
--- common/point/Makefile	2010-12-25 22:44:22 +0000
+++ common/point/Makefile	2010-12-29 14:47:26 +0000
@@ -19,8 +19,11 @@
 lib:	common_test Makefile
 	@cp -v triad.h ../include
 	@echo build complete
-	
-common_test:	common_test.cpp triad.h Makefile
+
+../include/common.h:
+	@cd ../common_rl; make lib
+
+common_test:	common_test.cpp triad.h Makefile ../include/common.h
 	@rm -vf common_test
 	g++ -O3 common_test.cpp -I ../include ../obj/common.o -o common_test