From 3edd47f7830f7176ae97e440490e20f6132706e8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 28 Apr 2025 15:57:02 -0400 Subject: Fix issue with running `make install` without config file --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8fe9321f..e9f11cfc 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,14 @@ ifeq ($(wildcard config.mk),) all: config.mk $(MAKE) all +install: config.mk + $(MAKE) install +install-files: config.mk + $(MAKE) install-files +install-lib: config.mk + $(MAKE) install-lib +test: config.mk + $(MAKE) test config.mk: configure.sh bash ./configure.sh else -- cgit v1.2.3