A Simple X Image Viewer
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

7 anos atrás
123456789101112131415161718
  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