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


LIBRARY       = mjexample2

PROGRAM       = foo

HDRS	      = mj_module_example2.h \
		mj_module_example2_gui.h

SRCS	      = mj_module_example2.C \
		mj_module_example2_gui.C \
		mj_module_example2_gui_moc.C \

OBJS	      = mj_module_example2.o \
		mj_module_example2_gui.o \
		mj_module_example2_gui_moc.o

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

# Qt message (.qm) files for translations.
# The first (currently only) language besides the default is Finnish (fi).
# Others will/may follow
QMFILES       = mj_example2_fi.qm

all: dlib plugin translate

include $(MUSTAJUURI_PATH)/src/Makelibs

