|
Last change
on this file since 588 was 588, checked in by harald, 25 years ago |
|
added the first implementation of a class MNphotEvent to describe
to describe one event on the level of NumberofCerenkovPhotons
|
|
File size:
859 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 -I../mgui
|
|---|
| 23 |
|
|---|
| 24 | # @code
|
|---|
| 25 |
|
|---|
| 26 | CINT = Analysis
|
|---|
| 27 | LIB = manalysis.a
|
|---|
| 28 |
|
|---|
| 29 | #------------------------------------------------------------------------------
|
|---|
| 30 |
|
|---|
| 31 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
|---|
| 32 |
|
|---|
| 33 | SRCFILES = MNphotEvent.cc
|
|---|
| 34 |
|
|---|
| 35 | SRCS = $(SRCFILES)
|
|---|
| 36 | HEADERS = $(SRCFILES:.cc=.h)
|
|---|
| 37 | OBJS = $(SRCFILES:.cc=.o)
|
|---|
| 38 |
|
|---|
| 39 | ############################################################
|
|---|
| 40 |
|
|---|
| 41 | all: $(LIB)
|
|---|
| 42 |
|
|---|
| 43 | include ../Makefile.rules
|
|---|
| 44 |
|
|---|
| 45 | clean: rmlib rmcint rmobjs rmcore
|
|---|
| 46 |
|
|---|
| 47 | mrproper: clean rmbak
|
|---|
| 48 |
|
|---|
| 49 | # @endcode
|
|---|
| 50 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.