From daf7744b977a9298e7880c9dcbb62cc6406b6cf6 Mon Sep 17 00:00:00 2001 From: TrevorWilsonSS Date: Wed, 21 Nov 2018 06:05:37 -0700 Subject: [PATCH] Added a git ignore file and ox-hugo-autoloads.el to cleanup rule I added a .gitignore to ignore doc/content, doc/public and ox-hugo-autoloads.el. I also added ox-hugo-autoloads.el to the make clean rule so that it is removed. --- .gitignore | 3 +++ Makefile | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d3b25b9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +doc/content +doc/public +ox-hugo-autoloads.el \ No newline at end of file diff --git a/Makefile b/Makefile index d74ea9e..cf533bb 100644 --- a/Makefile +++ b/Makefile @@ -222,6 +222,7 @@ clean: ctemp @rm -rf $(OX_HUGO_ELPA) @rm -rf ./doc/public @rm -rf /tmp/hugo/bin + @rm ox-hugo-autoloads.el # Set a make variable during rule execution # https://stackoverflow.com/a/1909390/1219634