# COPYRIGHT
#
# This file is part of Mustajuuri.
#
# Author: Tommi Ilmonen, 1999-2002.
#
# 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       = mjladspaexport

PROGRAM       = foo

HDRS	      = mj_ladspa_export.h

SRCS	      = mj_ladspa_export.C

OBJS	      = mj_ladspa_export.o


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

all: dlib 
		@echo 
		@echo "  You should copy the library $(PLATFORM)/$(LIBRARY).so"
		@echo "  to the directory containing your LADSPA plugins."
		@echo "  Typically /usr/local/ladspa/ or similar."
		@echo "  (cp $(PLATFORM)/$(LIBRARY).so /usr/local/ladspa/)"
		@echo 

include $(MUSTAJUURI_PATH)/src/Makelibs

