diff options
author | Bert Münnich <ber.t@posteo.de> | 2017-10-08 22:02:29 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2017-10-08 22:02:29 +0200 |
commit | e3b68efadd6e6287f6478b16ed95eed0b1cd4bfa (patch) | |
tree | b88acd70063e80069e25c561b647911d3f4fcba0 | |
parent | 33b5dbfa824a0f2f1b5cd03daaad6379270b682f (diff) |
Move DEPFLAGS from Makefile to config.mk
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | config.mk | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,6 @@ all: sxiv include config.mk CPPFLAGS += -I. -DVERSION=\"$(VERSION)\" -DHAVE_GIFLIB=$(HAVE_GIFLIB) -DHAVE_LIBEXIF=$(HAVE_LIBEXIF) -DEPFLAGS := -MMD -MP LDLIBS := -lImlib2 -lX11 -lXft @@ -4,6 +4,7 @@ MANPREFIX := $(PREFIX)/share/man CC ?= gcc CFLAGS += -std=c99 -Wall -pedantic CPPFLAGS += -I/usr/include/freetype2 -D_XOPEN_SOURCE=700 +DEPFLAGS := -MMD -MP LDFLAGS += # autoreload backend: inotify/nop |