Further Reading of The Fine Manual reveals that that way to quote $ in a
makefile is to say "$$":
test: testexec
for test in $(TESTS); do ./$$test ; done
I'm using CPPUnit (http://cppunit.sourceforge.net/cppunit-wiki) to make
unit tests for each class in my C++ program. I can say "mak
I'm using CPPUnit (http://cppunit.sourceforge.net/cppunit-wiki) to make
unit tests for each class in my C++ program. I can say "make test" to
have them all built and executed. The "testexec" target builds the unit
test executables without running them. I started with something like this:
TE
2 matches
Mail list logo