diff options
author | B. Watson <urchlay@slackware.uk> | 2024-01-10 12:00:34 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-01-10 12:00:34 -0500 |
commit | f833c4fbabb8a46692f4ec4d32f738dfd9974ce8 (patch) | |
tree | ba2639a9678c75aff6f22805b9f09a3c29f3fe20 /Makefile | |
parent | e8439101f570b469bcb01e8762fb4d54522f7425 (diff) | |
download | hcalc-f833c4fbabb8a46692f4ec4d32f738dfd9974ce8.tar.gz |
Makefile: add tags and indent targets.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -83,7 +83,7 @@ $(MANPAGE): $(PROJ).rst version.rst rst2man $(PROJ).rst > $(MANPAGE) clean: - rm -f *.o *.d *~ \#* $(PROJ) core + rm -f *.o *.d *~ \#* $(PROJ) core tags realclean: clean rm -f VERSION version.h version.rst $(MANPAGE) @@ -104,4 +104,10 @@ install: all release: sh makerelease.sh $(VERSION) -.PHONY: all clean realclean install release +indent: + indent *.[ch] + +tags: + ctags *.[ch] + +.PHONY: all clean realclean install release indent |