mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Makefile detect header change (#355)
This commit is contained in:
parent
2f413f8059
commit
6d7c25822a
7
Makefile
7
Makefile
|
@ -59,14 +59,13 @@ LDLIBS += $(LDLIBS_CURSES)
|
||||||
|
|
||||||
DISTFILES = src nnn.1 Makefile README.md LICENSE
|
DISTFILES = src nnn.1 Makefile README.md LICENSE
|
||||||
SRC = src/nnn.c
|
SRC = src/nnn.c
|
||||||
|
HEADERS = src/nnn.h
|
||||||
BIN = nnn
|
BIN = nnn
|
||||||
|
|
||||||
all: $(BIN)
|
all: $(BIN)
|
||||||
|
|
||||||
$(SRC): src/nnn.h
|
$(BIN): $(SRC) $(HEADERS)
|
||||||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)
|
||||||
$(BIN): $(SRC)
|
|
||||||
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
||||||
|
|
||||||
# targets for backwards compatibility
|
# targets for backwards compatibility
|
||||||
debug: $(BIN)
|
debug: $(BIN)
|
||||||
|
|
Loading…
Reference in a new issue