Hello, I'm trying to define 'make check' so that it will run a bash script in the parent directory of all my binaries.
The parent Makefile.am currently looks like this: SUBDIRS = \ C \ CPP \ TEST: simple_test # end of makefile The simple_test file is the bash script I'm using to test the programs compiled in the C and CPP folders. However, this is currently not working. I'm wondering if there is anything I'm missing here. Thanks! Sam