source: trunk/MagicSoft/Mars/mmain/Makefile@ 2837

Last change on this file since 2837 was 2800, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS software
6#
7##################################################################
8include ../Makefile.conf.$(OSTYPE)
9include ../Makefile.conf.general
10
11#
12# Handling name of the Root Dictionary Files
13#
14CINT = Main
15
16#
17# Library name to creatre
18#
19LIB = mmain.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../mraw \
25 -I../mgui -I../mgeom -I../mhbase -I../mhist -I../mmontecarlo \
26 -I../mfileio -I../mimage -I../mhistmc -I../mgbase -I../mfilter \
27 -I../mdata
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MBrowser.cc \
34 MDataCheck.cc \
35 MMars.cc \
36 MAnalysis.cc \
37 MMonteCarlo.cc \
38 MGDisplayAdc.cc \
39 MEventDisplay.cc \
40 MOnlineDisplay.cc \
41 MOnlineDump.cc \
42 MCameraDisplay.cc
43
44SRCS = $(SRCFILES)
45HEADERS = $(SRCFILES:.cc=.h)
46OBJS = $(SRCFILES:.cc=.o)
47
48############################################################
49
50all: $(LIB)
51
52include ../Makefile.rules
53
54#clean: rmcint rmobjs rmcore rmlib
55
56mrproper: clean rmbak
57
58# @endcode
Note: See TracBrowser for help on using the repository browser.