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

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

CUSTOMFLAGS   := $(CUSTOMFLAGS) $(RESTRICTFLAGS) 

#
# Local variables
# 

# Own Includes & defines:

# PWD          := $(FLUID_ROOT)/src/mjdsp

LIBRARY       = FluidProcess

# PROGRAM       = mjdsp

# MAINSRC = main.C

# MAINOBJ = main.o

HDRS	      = MessageSource.hpp \
		MessageSink.hpp \
		MessagePrinter.hpp \
		MessageStringPrinter.hpp \
		ProcessorBase.hpp \
		ProcessorNode.hpp \
		Processors.hpp \

SRCS	      = MessageSource.cpp \
		MessageSink.cpp \
		MessagePrinter.cpp \
		MessageStringPrinter.cpp \
		ProcessorNode.cpp \
		Processors.cpp \

OBJS	      = MessageSource.o \
		MessageSink.o \
		MessagePrinter.o \
		MessageStringPrinter.o \
		ProcessorNode.o \
		Processors.o

LIBS          = $(LEXLIB) $(MATH)

all: slib dlib 

include $(FLUID_ROOT)/src/Makelibs

