From: Anna Arad <4895022+annagrram@users.noreply.github.com> Date: Sat, 12 Oct 2019 21:37:53 +0000 (+0300) Subject: Makefile detect header change (#355) X-Git-Tag: v2.8~163 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6d7c25822a89de1deb0a6326ab37160198b3a703;p=nnn.git Makefile detect header change (#355) --- diff --git a/Makefile b/Makefile index b707ec29..136da5f0 100644 --- a/Makefile +++ b/Makefile @@ -59,14 +59,13 @@ LDLIBS += $(LDLIBS_CURSES) DISTFILES = src nnn.1 Makefile README.md LICENSE SRC = src/nnn.c +HEADERS = src/nnn.h BIN = nnn all: $(BIN) -$(SRC): src/nnn.h - -$(BIN): $(SRC) - $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) +$(BIN): $(SRC) $(HEADERS) + $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS) # targets for backwards compatibility debug: $(BIN)