A Simple X Image Viewer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

25 lignes
519 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. LDFLAGS +=
  7. LIBS := -lImlib2 -lX11 -lXft
  8. # autoreload backend: inotify/nop
  9. AUTORELOAD := inotify
  10. # optional dependencies:
  11. # giflib: gif animations
  12. ifndef NO_GIFLIB
  13. CPPFLAGS += -DHAVE_GIFLIB
  14. LIBS += -lgif
  15. endif
  16. # libexif: jpeg auto-orientation, exif thumbnails
  17. ifndef NO_LIBEXIF
  18. CPPFLAGS += -DHAVE_LIBEXIF
  19. LIBS += -lexif
  20. endif