From 52db1d03e5067de4ba77c3a12465149d268eb3d1 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 9 Jun 2025 02:51:27 +0200 Subject: Begin migration towards SQLite --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'GNUmakefile') 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 -- cgit v1.2.3