>Chip, Tags shouldn't be built automatically, unless someone runs "make tags"
>(or overwritten in your per-user .mk rules).
>
>Also, we should try to run ctags, else etags, else true
>
>tags: $(wildcard *.[ch])
>       ctags *.[hc] 2>/dev/null || etags *.[hc] 2>/dev/null || true


        ctags $@ 2>/dev/null || etags $@ 2>/dev/null || :;

Looks better and saves to shell globs. :)


Jan Engelhardt
-- 
| Alphagate Systems, http://alphagate.hopto.org/
| jengelh's site, http://jengelh.hopto.org/
_______________________________________________
unionfs mailing list
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs

Reply via email to