source: trunk/MagicSoft/include-Classes/MMcFormat/Makefile@ 574

Last change on this file since 574 was 574, checked in by tbretz, 24 years ago
see Mars/Changelog
  • Property svn:executable set to *
File size: 873 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.
23
24# @code
25
26CINT = Mc
27LIB = mmc.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MHeaderTrig.cxx \
34 MMcEvt.cxx \
35 MMcTrig.cxx
36
37SRCS = $(SRCFILES)
38HEADERS = $(SRCFILES:.cxx=.hxx)
39OBJS = $(SRCFILES:.cxx=.o)
40
41############################################################
42
43all: $(LIB)
44
45include ../Makefile.rules
46
47clean: rmlib rmcint rmobjs rmcore
48
49mrproper: clean rmbak
50
51# @endcode
52
Note: See TracBrowser for help on using the repository browser.