From 01d47352b929db84b5a3179b70adb87088003f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 21 Mar 2016 15:47:43 +0100 Subject: build: create empty config.mk if it does not exist This should fix `make local` (as used on travis-ci) and `make standalone` in cases where `configure` was not run successfully due to missing dependencies. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b08449f..7d10205 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,9 @@ all: vis config.h: cp config.def.h config.h +config.mk: + @touch $@ + vis: config.h config.mk *.c *.h ${CC} ${CFLAGS} ${CFLAGS_VIS} *.c ${LDFLAGS} ${LDFLAGS_VIS} -o $@ -- cgit v1.2.3