markman

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/markman
Log | Files | Refs | LICENSE

config.mk (358B)


      1 # markman version number
      2 VERSION = 0.0.0
      3 
      4 # paths
      5 PREFIX = /usr/local
      6 MANPREFIX = $(PREFIX)/share/man
      7 
      8 # includes and libraries
      9 INCS = -Iinclude
     10 LIBS =
     11 
     12 # flags
     13 CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=600
     14 CFLAGS = -g -std=c99 -pedantic -Wall $(INCS) $(CPPFLAGS)
     15 LDFLAGS = -g $(LIBS)
     16 
     17 # compiler and linker
     18 CC = cc