From 3bf3455924006c8ea81d5f269d5307f97490c267 Mon Sep 17 00:00:00 2001 From: winter Sparkles Date: Mon, 24 Aug 2026 00:44:14 +0100 Subject: initial commit we have 'expand::home' --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.3