From 8cb0f81d770f01ed06adb71561463418c7fec82a Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 25 May 2023 18:43:12 +0200 Subject: Implement first unit test and integrate into build --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2fa55ae..c6e9352 100644 --- a/Makefile +++ b/Makefile @@ -12,19 +12,19 @@ DESKTOP=$(BUILDDIR)/$(DESKTOP_SRC) DESKTOP_INSTALL=$(INSTALLATION)/share/applications/$(DESKTOP_SRC) -all: $(LIMOX) $(DESKTOP) +all: $(LIMOX) $(DESKTOP) tests $(BUILDDIR): mkdir $@ -$(LIMOX): $(BUILDDIR) +$(LIMOX): $(BUILDDIR) tests go build -o $@ $(LIMOX_GO_PACKAGE) $(DESKTOP): $(BUILDDIR) cp $(DESKTOP_SRC) $@ -.PHONY: clean debug install +.PHONY: clean debug install tests clean: rm -rf $(BUILDDIR) @@ -35,3 +35,6 @@ debug: install: $(LIMOX) install -Dm 755 $(LIMOX) $(LIMOX_INSTALL) install -Dm 644 $(DESKTOP) $(DESKTOP_INSTALL) + +tests: + go test ./... -- cgit v1.2.3-70-g09d2