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.

25 lines
460 B

  1. # i3lock version
  2. VERSION = 1.0
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /usr
  6. X11INC = /usr/X11R6/include
  7. X11LIB = /usr/X11R6/lib
  8. MANDIR = $(DESTDIR)$(PREFIX)/share/man
  9. # includes and libs
  10. INCS = -I. -I/usr/include -I${X11INC}
  11. LIBS = -L${X11LIB} -lX11 -lpam -lXext -lXpm -lm
  12. # flags
  13. CPPFLAGS = -DVERSION=\"${VERSION}\"
  14. CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  15. LDFLAGS = ${LIBS}
  16. # compiler and linker
  17. CC = cc
  18. INSTALL=install