##################################################################
#
#   makefile
# 
#   for the MARS software
#
##################################################################
include ../Makefile.conf.$(OSTYPE)
include ../Makefile.conf.general

#
# Handling name of the Root Dictionary Files
#
CINT  = Astro

#
# Library name to creatre
#
LIB   = mastro.a

#
#  connect the include files defined in the config.mk file
#
INCLUDES =  -I. -I../mbase

# mgui (MCamEvent):         MExtractSignalCam
# mgeom(MGeomCam):          MArrivalTime
# mtools(MCubicSpline):     MArrivalTime
# mraw (MRawEvtData):       MExtractSignal
# manalysis (MPedestalCam): MExtractSignal

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

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

SRCFILES = MAstro.cc \
	   MAstroCatalog.cc \
           MObservatory.cc

SRCS    = $(SRCFILES)
HEADERS = $(SRCFILES:.cc=.h)
OBJS    = $(SRCFILES:.cc=.o) 

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

all: $(LIB)

include ../Makefile.rules

#clean:	rmcint rmobjs rmcore rmlib

mrproper:	clean rmbak

# @endcode

