aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorwinter Sparkles2026-08-24 00:44:14 +0100
committerwinter Sparkles2026-08-24 00:51:59 +0100
commit3bf3455924006c8ea81d5f269d5307f97490c267 (patch)
tree05fc2bf74ce539dca8d4624573834905695095b8 /Makefile
initial commit we have 'expand::home'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fe5c30f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+include config.mk
+
+ifdef USE_ASAN
+LDFLAGS += -fsanitize=address
+export LDFLAGS
+HAREFLAGS += -lc
+endif
+
+all:
+
+check:
+ $(HARE) test $(HAREFLAGS)
+
+install:
+ mkdir -p $(DESTDIR)$(THIRDPARTYDIR)/lettuce/
+ cp -R lettuce/* $(DESTDIR)$(THIRDPARTYDIR)/lettuce/
+
+uninstall:
+ rm -rf $(DESTDIR)$(THIRDPARTYDIR)/lettuce/
+
+.PHONY: check install uninstall