diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-20 21:59:49 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-20 22:16:52 -0400 |
| commit | 9abb2f9799e9f4c075ac9686f2bfe5f5d567c681 (patch) | |
| tree | 92fe2cedeec0b50adaffe4efcf8b0ac232e6c409 /Makefile | |
| parent | 119b423f4d876c917810e949d96d6eb7804301b5 (diff) | |
fix windows and mac
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -26,7 +26,11 @@ distclean: .PHONY: inx inx: locales mkdir -p inx - bin/generate-inx-files + if [ "$$BUILD" = "windows" ]; then \ + wine c:\\Python\\python.exe bin/generate-inx-files; \ + else \ + bin/generate-inx-files; \ + fi .PHONY: messages.po messages.po: |
