I have the following PHONY target in a Makefile
install:
echo /usr/bin/shelldecrypt must be writable
cp shelldecrypt /usr/bin
When I run the target, the command executed is displayed
prompt> make install
OUTPUT IS
echo / usr / bin / shelldecrypt must be writable
/ usr / bin / shelldecrypt must be writable
cp shelldecrypt / usr / bin
EXIT HOW I WANT IT
/ usr / bin / shelldecrypt must be writable
cp shelldecrypt / usr / bin
source
share