diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-03-21 15:47:43 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-03-21 15:47:43 +0100 |
| commit | 01d47352b929db84b5a3179b70adb87088003f87 (patch) | |
| tree | 75e7a3770c5e5f67480a4936a2c2668c460055d7 | |
| parent | a0fff23195df68682296953aa6bcae7ff97a6ad1 (diff) | |
| download | vis-01d47352b929db84b5a3179b70adb87088003f87.tar.gz vis-01d47352b929db84b5a3179b70adb87088003f87.tar.xz | |
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.
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 $@ |
