links

lynx-like text mode web browser
git clone anongit@rnpnr.xyz:links.git
Log | Files | Refs | Feed | README | LICENSE

config.mk (298B)


      1 VERSION = 2.16
      2 
      3 PREFIX = /usr/local
      4 MANPREFIX = $(PREFIX)/share/man
      5 
      6 INCS = -I. -I/usr/include -I/usr/local/include
      7 LIBS = -L/usr/lib -L/usr/local/lib \
      8        -lcrypto -levent -lm -lssl -lz
      9 
     10 CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_BSD_SOURCE
     11 CFLAGS = -O2 -std=c99 -Wall -pedantic
     12 LDFLAGS = $(LIBS)