diff options
author | Omar Polo <op@omarpolo.com> | 2021-04-14 15:06:27 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-04-14 15:06:27 +0000 |
commit | 548c2849fab0906f262491fc9744724f23af6687 (patch) | |
tree | 516008b696195f8b2a54e65a82fd7a15d2227d5a /Makefile | |
parent | b33425827e3b96fa5f0ee2b7892fb5782c9b7879 (diff) |
hide output of etags
even the message "sh: etags: not such file or directory" or whatever
seems to be confusing for users, so silent it.
(maybe it would be better not to automatically generate the TAGS, but
it's so handy...)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ static: ${OBJS} ${CC} ${OBJS} -o gmid ${LDFLAGS} ${STATIC} TAGS: ${SRCS} - -etags ${SRCS} || true + @(etags ${SRCS} || true) 2>/dev/null clean: rm -f *.o compat/*.o lex.yy.c y.tab.c y.tab.h y.output gmid gg |