A Simple X Image Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
368 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. # autoreload backend: inotify/nop
  8. AUTORELOAD := inotify
  9. # enable features requiring giflib (-lgif)
  10. HAVE_GIFLIB := 1
  11. # enable features requiring libexif (-lexif)
  12. HAVE_LIBEXIF := 1