libds

simple data structures library and utility functions
git clone git://git.2f30.org/libds
Log | Files | Refs | LICENSE

config.mk (353B)


      1 NAME = libds
      2 VERSION = 0.0
      3 
      4 # Customize below to fit your system
      5 
      6 # paths
      7 PREFIX ?= /usr
      8 MANPREFIX = ${PREFIX}/share/man
      9 
     10 # includes and libs
     11 INCS = -I. -I/usr/include
     12 LIBS = -L/usr/lib -lc
     13 
     14 # flags
     15 CPPFLAGS = -DVERSION=\"${VERSION}\"
     16 CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os ${INCS} ${CPPFLAGS}
     17 LDFLAGS = -s ${LIBS}
     18 
     19 # compiler and linker
     20 CC = cc