##################################################################
#
#   makefile
# 
#   for the MARS software
#
##################################################################
# @maintitle

# @code

#
#  please change all system depend values in the 
#  config.mk.${OSTYPE} file 
#
#
include ../Makefile.conf.$(OSTYPE)
include ../Makefile.conf.general

# @endcode 

INCLUDES = -I.

# @code 

CINT     = Mc
LIB      = mmc.a

#------------------------------------------------------------------------------

.SUFFIXES: .c .cc .cxx .h .hxx .o 

SRCFILES = MHeaderTrig.cxx \
	   MMcEvt.cxx \
           MMcTrig.cxx 

SRCS    = $(SRCFILES)
HEADERS = $(SRCFILES:.cxx=.hxx)
OBJS    = $(SRCFILES:.cxx=.o) 

############################################################

all: $(LIB)

include ../Makefile.rules

clean:	rmlib rmcint rmobjs rmcore

mrproper:	clean rmbak

# @endcode

