summaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index e3aa32b..696fd91 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,13 +1,14 @@
cssfiles := $(shell find static -name '*.css' -not -name '*.min.css')
cssfiles := $(cssfiles:.css=.min.css)
gofiles := $(shell find main.go src -name '*.go')
+sqlfiles := $(shell find src/dbx/sql -name '*.sql')
templates := $(shell find src/templates -name '*.tmpl')
exttmpl := $(wildcard cmd/exttmpl/*.go)
all: euro-cash.eu exttmpl
-euro-cash.eu: $(cssfiles) $(templates) $(gofiles)
+euro-cash.eu: $(cssfiles) $(templates) $(gofiles) $(sqlfiles)
go build
all-i18n: exttmpl
@@ -29,4 +30,4 @@ clean:
-or -name '*.tar.gz' \
\) -delete
-.PHONY: all-i18n clean release
+.PHONY: all-i18n clean release \ No newline at end of file