ii/config.mk

23 lines
529 B
Makefile
Raw Normal View History

2005-12-19 16:39:54 +03:00
# Customize to fit your system
# paths
PREFIX = /usr/local
BINDIR = ${PREFIX}/bin
MANDIR = ${PREFIX}/share/man
MAN1DIR = ${MANDIR}/man1
# Set the following to install to a different root
DESTDIR =
2005-12-19 16:39:54 +03:00
INCDIR = ${PREFIX}/include
LIBDIR = ${PREFIX}/lib
VERSION = 1-rc2
2005-12-19 16:39:54 +03:00
# includes and libs
INCLUDES = -I. -I${INCDIR} -I/usr/include
LIBS = -L${LIBDIR} -L/usr/lib -lc
# compiler
CC = cc
CFLAGS = -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}