# COPYRIGHT
#
# This file is part of Mustajuuri.
#
# Author: Tommi Ilmonen, 1999-2001.
#
# Mustajuuri is licensed under GNU Lesser General Public License
# (LGPL). The LGPL text can be founs in file "LGPL" that is
# distributed with this source package. The Mustajuuri way to
# interpret LGPL can be found in file "MUSTAJUURI_LICENSE" that is
# distributed with the mustajuuri source code.  
#


#
# Load compile time parameters
#

include ../Makeconf

#
# Local variables
# 

# Own Includes & defines:

# PWD          := $(FLUID_ROOT)/src/mjdsp

LIBRARY       = FluidC

# PROGRAM       = mjdsp

# MAINSRC = main.cpp

# MAINOBJ = main.o

HDRS	      = CVector3.h \
		CMatrix3.h \
		CConfig.h \
		CTracker.h \
		CInputDevices.h 

SRCS	      = CVector3.cpp \
		CMatrix3.cpp  \
		CConfig.cpp \
		CTracker.cpp \
		CInputDevices.cpp 

OBJS	      = CVector3.o \
		CMatrix3.o  \
		CConfig.o \
		CTracker.o \
		CInputDevices.o

MAINSRC = main.cpp

MAINOBJ = main.o

LIBS          = $(FLUIDBASE) $(DIVABASE)

all: slib dlib 

include ../Makelibs

