cazan

azan with c
git clone https://git.afify.dev/cazan.git
Log | Files | Refs

config.mk (271B)


      1 # cazan version
      2 VERSION = 0.1
      3 
      4 # paths
      5 PREFIX    = /usr/local
      6 MANPREFIX = ${PREFIX}/share/man
      7 
      8 # flags
      9 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200112L
     10 CFLAGS   = -ansi -pedantic -Wextra -Wall -O0 ${CPPFLAGS}
     11 LDFLAGS  = -s -lm
     12 
     13 # compiler and linker
     14 CC = cc