git.y1.nz

selk

Keyboard-only rectangle selector for X
download: https://git.y1.nz/archives/selk.tar.gz
README | Files | Log | Refs | LICENSE

config.mk

      1 # Customize below to fit your system
      2 
      3 # paths
      4 PREFIX = /usr/local
      5 MANPREFIX = $(PREFIX)/share/man
      6 
      7 # includes and libs
      8 INCS = -I/usr/X11R6/include -I/usr/include/freetype2
      9 LIBS = -L/usr/X11R6/lib -lX11 -lfontconfig -lXft -lXrandr
     10 
     11 # flags
     12 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"$(VERSION)\"
     13 #CFLAGS   = -g -std=c99 -pedantic -Wall -O0 $(INCS) $(CPPFLAGS)
     14 CFLAGS   = $(INCS) -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os $(INCS) $(CPPFLAGS)
     15 LDFLAGS  = $(LIBS)
     16 
     17 # Solaris
     18 #CFLAGS = -fast $(INCS) -DVERSION=\"$(VERSION)\"
     19 #LDFLAGS = $(LIBS)
     20 
     21 # compiler and linker
     22 CC = cc

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.