source: trunk/MagicSoft/Mars/mfilter/Makefile@ 1485

Last change on this file since 1485 was 1485, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1005 bytes
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS software
6#
7##################################################################
8# @maintitle
9
10# @code
11
12#
13# please change all system depend values in the
14# config.mk.${OSTYPE} file
15#
16#
17include ../Makefile.conf.$(OSTYPE)
18include ../Makefile.conf.general
19
20# @endcode
21
22INCLUDES = -I. -I../mbase -I../mmc -I../manalysis -I../mdata
23
24# @code
25
26CINT = Filter
27LIB = mfilter.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MFTriggerLvl1.cc \
34 MF.cc \
35 MFilterList.cc \
36 MFDataMember.cc \
37 MFParticleId.cc \
38 MFAlpha.cc
39# MFDataChain.cc \
40
41SRCS = $(SRCFILES)
42HEADERS = $(SRCFILES:.cc=.h)
43OBJS = $(SRCFILES:.cc=.o)
44
45############################################################
46
47all: $(LIB)
48
49include ../Makefile.rules
50
51clean: rmcint rmobjs rmcore rmlib
52
53mrproper: clean rmbak
54
55# @endcode
56
Note: See TracBrowser for help on using the repository browser.