hello i am using my make file to compare two different files which have the same first name but different extensions. Here is my makefile code:
test:
for FILE in $$(find testing -type f ! -name "*.*"); do \
./tuxquest < $$FILE > "$${FILE}.test"; \
diff "$${FILE}.test" "$${FILE}.output"; \
done
it works alright, prints out all the differences on my terminal but in the end it says make: *** [makefile:14: test] Error 1