# 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

# Create debugging versions:
# CUSTOMFLAGS   := $(DEBUGFLAGS)

# Create optimized versions:
# CUSTOMFLAGS   := $(RELEASEFLAGS)

# Name of the plugin library; mjexample0 -> libmjexample0.so
LIBRARY       = mjexample0

# Header files:
HDRS	      = 

# C/C++ source files:
SRCS	      = mj_module_example0.C

# Necessary object files:
OBJS	      = mj_module_example0.o

# Libraries that the plugin needs:
LIBS          = $(MJBASE) \
		$(QT) \
		$(THREAD) \
		$(DL) \
                -lm

# Targets for make
all: dlib plugin 

include $(MUSTAJUURI_PATH)/src/Makelibs

