|
Last change
on this file since 2588 was 1619, checked in by blanch, 23 years ago |
|
*** empty log message ***
|
-
Property svn:executable
set to
*
|
|
File size:
1.0 KB
|
| 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 -I../MBase -I../mgeom
|
|---|
| 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 | SRCFILESCC = MMcConfigRunHeader.cc \
|
|---|
| 40 | MMcCorsikaRunHeader.cc
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 | SRCS = $(SRCFILES)
|
|---|
| 44 |
|
|---|
| 45 | HEADERS = $(SRCFILES:.cxx=.hxx) $(SRCFILESCC:.cc=.h)
|
|---|
| 46 | OBJS = $(SRCFILES:.cxx=.o) $(SRCFILESCC:.cc=.o)
|
|---|
| 47 |
|
|---|
| 48 | ############################################################
|
|---|
| 49 |
|
|---|
| 50 | all: $(LIB)
|
|---|
| 51 |
|
|---|
| 52 | include ../Makefile.rules
|
|---|
| 53 |
|
|---|
| 54 | clean: rmcint rmobjs rmcore rmlib
|
|---|
| 55 |
|
|---|
| 56 | mrproper: clean rmbak
|
|---|
| 57 |
|
|---|
| 58 | # @endcode
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.