Re: Quoting shell command lines in Makefiles

2005-10-17 Thread Michael D. Crawford
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

Quoting shell command lines in Makefiles

2005-10-17 Thread Michael D. Crawford
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