|
Last change
on this file since 1069 was 1062, checked in by blanch, 24 years ago |
|
It has been modified to be able to compile the new class: MMcRunHeader.
|
-
Property svn:executable
set to
*
|
|
File size:
934 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 | #
|
|---|
| 17 | include ../Makefile.conf.$(OSTYPE)
|
|---|
| 18 | include ../Makefile.conf.general
|
|---|
| 19 |
|
|---|
| 20 | # @endcode
|
|---|
| 21 |
|
|---|
| 22 | INCLUDES = -I. -I../mbase
|
|---|
| 23 |
|
|---|
| 24 | # @code
|
|---|
| 25 |
|
|---|
| 26 | CINT = Mc
|
|---|
| 27 | LIB = mmc.a
|
|---|
| 28 |
|
|---|
| 29 | #------------------------------------------------------------------------------
|
|---|
| 30 |
|
|---|
| 31 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
|---|
| 32 |
|
|---|
| 33 | SRCFILES = MMcTrigHeader.cxx \
|
|---|
| 34 | MMcFadcHeader.cxx \
|
|---|
| 35 | MMcRunHeader.cxx \
|
|---|
| 36 | MMcEvt.cxx \
|
|---|
| 37 | MMcTrig.cxx
|
|---|
| 38 |
|
|---|
| 39 | SRCS = $(SRCFILES)
|
|---|
| 40 | HEADERS = $(SRCFILES:.cxx=.hxx)
|
|---|
| 41 | OBJS = $(SRCFILES:.cxx=.o)
|
|---|
| 42 |
|
|---|
| 43 | ############################################################
|
|---|
| 44 |
|
|---|
| 45 | all: $(LIB)
|
|---|
| 46 |
|
|---|
| 47 | include ../Makefile.rules
|
|---|
| 48 |
|
|---|
| 49 | clean: rmcint rmobjs rmcore rmlib
|
|---|
| 50 |
|
|---|
| 51 | mrproper: clean rmbak
|
|---|
| 52 |
|
|---|
| 53 | # @endcode
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.