A Simple X Image Viewer
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

19 行
390 B

  1. PREFIX := /usr/local
  2. MANPREFIX := $(PREFIX)/share/man
  3. CC ?= gcc
  4. CFLAGS += -std=c99 -Wall -pedantic
  5. CPPFLAGS += -I/usr/include/freetype2 -D_XOPEN_SOURCE=700
  6. DEPFLAGS := -MMD -MP
  7. LDFLAGS +=
  8. # autoreload backend: inotify/nop
  9. AUTORELOAD := inotify
  10. # enable features requiring giflib (-lgif)
  11. HAVE_GIFLIB := 1
  12. # enable features requiring libexif (-lexif)
  13. HAVE_LIBEXIF := 1