# 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.  
#

#For searching stuff in other directories.
# VPATH=../

#
# Load compile time parameters
#

include $(MUSTAJUURI_PATH)/src/Makeconf

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

#
# Local variables
# 

# Own Includes & defines:

# 

LIBRARY       = zmjladspa

PROGRAM       = foo

HDRS	      = mj_module_ladspa.h \
		mj_ladspa_driver.h

SRCS	      = mj_module_ladspa.C \
		mj_ladspa_driver.C \
		mj_ladspa_import.C

OBJS	      = mj_module_ladspa.o \
		mj_ladspa_driver.o \
		mj_ladspa_import.o


DLIBS	      = 

SLIBS	      =	

LIBS          = $(QT) \
		$(MJBASE) \
		$(THREAD) \
		$(AUDIO) \
		$(MIDI) \
		$(DMEDIA) \
		$(DL) \
                -lm

all: dlib plugin

include $(MUSTAJUURI_PATH)/src/Makelibs

