Code: Select all
.PHONY: all
all:
@make ntouch
@echo Executing Post Build commands ...
@cp /home/jgill/videophone/Build/ntouch/release/* /tftpboot
@cp /home/jgill/videophone/Build/ntouch/release/* /home/jgill/ftp
@echo Done
My debug build works because I don't have any post-build commands, so it just runs my own makefile. If I add a post-build command, then it does the same thing with this ntouch.mk. I wouldn't expect it to add the "-e" when executing this generated makefile, since it's still just supposed to be running my custom commands, right?