# This file defines the directories in which all the files are located.
# Copyright (C) 2004-2008 by Pawel Pilarczyk.
# This is free software. No warranty. Consult 'license.txt' for details.
# Created on October 26, 2004 by PwP. Last revision: September 27, 2005.


# object files
ifndef OBJ
OBJ = ${HOME}obj/
endif

# executable binary files
ifndef BIN
BIN = ${HOME}bin/
endif

# the library file(s)
ifndef LIB
LIB = ${HOME}lib/
endif

# header files
INC := ${INC} ${HOME}include/

# source CPP files
ifndef SRC
SRC = ${HOME}src/
endif

# the example programs
EXAMPLES = ${HOME}examples/

# the test programs
TESTS = ${HOME}tests/

# the general programs
PROGRAMS = ${HOME}programs/

# private programs
PRIVATE = ${HOME}private/

