diff options
author | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
commit | ea54de7d32e6b576ccfb430e7e57811b7c4587fe (patch) | |
tree | 4182e9c401e571adb53f1d6cbe2b072c171c87b2 /Makefile | |
parent | d0f58c4812c8b5821e9ed15806fae44f7b1fb095 (diff) | |
download | ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar.zst ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.zip |
Remove complete implementation
Restarting from scratch seems to be the fastest approach to switch to
sqlite and get rid of some other structural mistakes from the past.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 92507ae..0000000 --- a/Makefile +++ /dev/null @@ -1,31 +0,0 @@ - -DESTDIR="" # leave empty for the current system or provide a fakeroot here -PREFIX="/usr" - -.PHONY: all clean install debug - -all: - mkdir -p build - go build -o build/ceres *.go - -clean: - rm -rf build - -install: all - install -Dm 755 build/ceres $(DESTDIR)$(PREFIX)/bin/ceres - - install -Dm 644 config/default.json $(DESTDIR)/etc/ceres/config.json - - install -Dm 644 data/static/style.css $(DESTDIR)$(PREFIX)/share/ceres/static/style.css - - install -Dm 644 data/templates/footer.html $(DESTDIR)$(PREFIX)/share/ceres/templates/footer.html - install -Dm 644 data/templates/index.html $(DESTDIR)$(PREFIX)/share/ceres/templates/index.html - install -Dm 644 data/templates/recipe_edit.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_edit.html - install -Dm 644 data/templates/head.html $(DESTDIR)$(PREFIX)/share/ceres/templates/head.html - install -Dm 644 data/templates/recipe_confirm_deletion.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_confirm_deletion.html - install -Dm 644 data/templates/recipe.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe.html - - install -dm 700 $(DESTDIR)/var/lib/ceres - -debug: - go run *.go -c config/debug.json |