Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2136)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2137)
@@ -1,3 +1,8 @@
                                                  -*-*- END OF LINE -*-*-
+ 2003/05/23: Abelardo Moralejo
+
+   * mreflector/Makefile:
+     added (was missing)
+
  2003/05/23: Thomas Bretz
 
Index: /trunk/MagicSoft/Mars/mreflector/Makefile
===================================================================
--- /trunk/MagicSoft/Mars/mreflector/Makefile	(revision 2137)
+++ /trunk/MagicSoft/Mars/mreflector/Makefile	(revision 2137)
@@ -0,0 +1,50 @@
+##################################################################
+#
+#   makefile
+# 
+#   for the MARS software
+#
+##################################################################
+include ../Makefile.conf.$(OSTYPE)
+include ../Makefile.conf.general
+
+#
+# Handling name of the Root Dictionary Files
+#
+CINT  = Reflector
+
+#
+# Library name to creatre
+#
+LIB   = mreflector.a
+
+#
+#  connect the include files defined in the config.mk file
+#
+INCLUDES = -I. -I../mbase -I../mgeom -I../manalysis -I../mimage -I../mhist
+
+#------------------------------------------------------------------------------
+
+.SUFFIXES: .c .cc .cxx .h .hxx .o 
+
+SRCFILES = MRflEvtData.cc \
+	   MRflEvtHeader.cc \
+	   MRflRunHeader.cc \
+	   MRflSinglePhoton.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
+
