# nldev metadata NAME = nldev VERSION = 0.3 # Customize below to fit your system # paths PREFIX = /usr MANPREFIX = ${PREFIX}/share/man # includes and libs INCS = -I. -I/usr/include # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -D_GNU_SOURCE CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} # compiler and linker CC = cc