- $(COMPILE.cc) -c $(cppflags) ht_$$incfile.cpp ; \
- echo $$? ; \
- done
-
-lotest:
- @echo "Layout test #######################################################"
- @rm -f Makefile.sub
- @echo 'Testing all layout files under C++'
- @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
- @for file in $(prefix)/include/layout/*.h; do \
- incfile=`basename $$file .h` ; \
- echo $(ECHO_N) "$(E_CXX_L) layout/$$incfile.h - $(ECHO_C)" ; \
- echo '#include "'layout/$$incfile'.h"' > ht_$$incfile.cpp ; \
- echo 'void junk(){}' >> ht_$$incfile.cpp ; \
- $(COMPILE.cc) -c $(cppflags) -I$(prefix)/include/layout ht_$$incfile.cpp ; \
- echo $$? ; \
- done