瀏覽代碼

Simplify config.mk

master
Bert Münnich 7 年之前
父節點
當前提交
e46b1fa609
共有 2 個文件被更改,包括 21 次插入16 次删除
  1. +16
    -4
      Makefile
  2. +5
    -12
      config.mk

+ 16
- 4
Makefile 查看文件

@@ -1,10 +1,22 @@
VERSION := git-20170906
VERSION := git-20170908

.PHONY: clean install uninstall
.PHONY: all clean install uninstall
.SUFFIXES:

include config.mk

CPPFLAGS += -DVERSION=\"$(VERSION)\" -DHAVE_GIFLIB=$(HAVE_GIFLIB) -DHAVE_LIBEXIF=$(HAVE_LIBEXIF)
DEPFLAGS := -MMD -MP

LDLIBS := -lImlib2 -lX11 -lXft

ifneq ($(HAVE_GIFLIB),0)
LDLIBS += -lgif
endif
ifneq ($(HAVE_LIBEXIF),0)
LDLIBS += -lexif
endif

SRC := autoreload_$(AUTORELOAD).c commands.c image.c main.c options.c thumbs.c util.c window.c
DEP := $(SRC:.c=.d)
OBJ := $(SRC:.c=.o)
@@ -16,13 +28,13 @@ $(OBJ): Makefile
-include $(DEP)

%.o: %.c
$(CC) $(CFLAGS) $(CPPFLAGS) -DVERSION=\"$(VERSION)\" -MMD -MP -c -o $@ $<
$(CC) $(CFLAGS) $(CPPFLAGS) $(DEPFLAGS) -c -o $@ $<

config.h:
cp config.def.h $@

sxiv: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS)

clean:
rm -f $(OBJ) $(DEP) sxiv


+ 5
- 12
config.mk 查看文件

@@ -5,20 +5,13 @@ CC ?= gcc
CFLAGS += -std=c99 -Wall -pedantic
CPPFLAGS += -I/usr/include/freetype2 -D_XOPEN_SOURCE=700
LDFLAGS +=
LIBS := -lImlib2 -lX11 -lXft

# autoreload backend: inotify/nop
AUTORELOAD := inotify

# optional dependencies:
# giflib: gif animations
ifndef NO_GIFLIB
CPPFLAGS += -DHAVE_GIFLIB
LIBS += -lgif
endif
# libexif: jpeg auto-orientation, exif thumbnails
ifndef NO_LIBEXIF
CPPFLAGS += -DHAVE_LIBEXIF
LIBS += -lexif
endif
# enable features requiring giflib (-lgif)
HAVE_GIFLIB := 1

# enable features requiring libexif (-lexif)
HAVE_LIBEXIF := 1


Loading…
取消
儲存