commit 10fed44c7988d70a4dc2f57e24ca92b3f72924b8 from: Omar Polo date: Wed Oct 07 15:59:55 2020 UTC improve make error message if etags is not found the ‘|| true’ idiom leads to better make error. Now the ‘-’ becomes a bit redundant tho… commit - 09a1b978967c316e9c40caed8fe63a9a55565b9f commit + 10fed44c7988d70a4dc2f57e24ca92b3f72924b8 blob - 7c28f646df354ea9f88994f3291fbafb184fd870 blob + 6c495733d86ddd8cccbd9ed6f696b3b7c51bc178 --- Makefile +++ Makefile @@ -10,7 +10,7 @@ gmid: gmid.o ${CC} gmid.o -o gmid ${LDFLAGS} TAGS: gmid.c - -etags gmid.c + -etags gmid.c || true README.md: gmid.1 mandoc -Tmarkdown gmid.1 | sed -e '1d' -e '$$d' > README.md