summaryrefslogtreecommitdiff
path: root/repo/www/Makefile
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2020-03-15 13:14:36 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2020-03-15 13:14:36 +0100
commit4914800729158cfc6de90b3964c222c4ab225e8e (patch)
tree84811e7127c5280bb6dfdfe495af3abcabbaa32a /repo/www/Makefile
parent039dc0e133229482ff93aac1eac07e1d06465d2f (diff)
downloadmemory-leaks-4914800729158cfc6de90b3964c222c4ab225e8e.tar.xz
Use git-ls-files(1) to compute list of source files
It's not clear whether or not Python supports '\0' for null: the reference[1] says nothing about this specific escape sequence, but Python 3.7 seems to recognize it… repr('\0') says "'\\x00'", so let's use that. [1]: https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals
Diffstat (limited to 'repo/www/Makefile')
-rw-r--r--repo/www/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/repo/www/Makefile b/repo/www/Makefile
index ca50752..8f5bb2a 100644
--- a/repo/www/Makefile
+++ b/repo/www/Makefile
@@ -16,7 +16,7 @@ dependencies = deps.mk
include $(dependencies)
$(dependencies): make-deps.py $(text_folders)
- python3 $< "$(TEXT_FILES)" $(TOP_DIR) $(OUT_DIR)
+ python3 $< "$(TEXT_FILES)" $(OUT_DIR)
site: $(pages)