# Prefixes
prefix      = /dev/env/DJDIR
exec_prefix = ${prefix}

# Directory for user binaries
bindir  = ${exec_prefix}/bin

# Man page tree
mandir  = ${prefix}/man

# System binaries
sbindir = ${exec_prefix}/sbin

# Install into chroot area
# Useful when making rpms and similar
INSTALLROOT = 

# Install program
INSTALL         = /dev/env/DJDIR/bin/ginstall -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA    = ${INSTALL} -m 644

# Compiler and compiler flags
CC      = gcc.exe
CFLAGS  = -g -O2 -Wall -W -Wpointer-arith -Wbad-function-cast -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wshadow -Wcast-align

# Link flags
LDFLAGS = 

# Libraries
LIBS    = -lz -lgnugetopt -lm

# Additional library we need to build
LIBOBJS	= 

# ar and ranlib (for making libraries)
AR	= ar cq
RANLIB	= ranlib
