# COPYRIGHT
#
# This file is part of Mustajuuri.
#
# Author: Tommi Ilmonen, 1999-2000.
#
# 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 $(MUSTAJUURI_PATH)/src/Makeconf

# CUSTOMFLAGS   := $(DEBUGFLAGS)
# CUSTOMFLAGS   := $(RELEASEFLAGS)

#
# Local variables
# 

# Own Includes & defines:


LIBRARY       = mjdynamics

PROGRAM       = 

HDRS	      = mj_module_compressor2.h \
		mj_module_limiter.h \
		mj_module_compressor3.h \
		mj_module_limiter2.h


SRCS	      = mj_module_compressor2.C \
		mj_module_limiter.C \
		mj_module_compressor3.C \
		mj_module_limiter2.C \
		mj_dynamics_export.C

OBJS	      = mj_module_compressor2.o \
		mj_module_limiter.o \
		mj_module_compressor3.o \
		mj_module_limiter2.o \
		mj_dynamics_export.o


LIBS          = $(MJMODULES) \
		$(MJBASE) \
		$(MJDSP) \
		$(DIVAIO) \
		$(DIVABASE) \
		$(QT) \
		$(THREAD) \
		$(DMEDIA) \
		$(DL) \
                -lm

all: dlib plugin 

include $(MUSTAJUURI_PATH)/src/Makelibs

