source: trunk/MagicSoft/Cosy/base/Makefile@ 7763

Last change on this file since 7763 was 4105, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 2.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#
17include ../Makefile.conf.$(OSTYPE)
18include ../Makefile.conf.general
19
20# @endcode
21
22INCLUDES = -I. -I..
23
24# @code
25
26CINT = Base
27LIB = base.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MStopwatch.cc \
34 MParContainer.cc \
35 MThread.cc \
36 MTimeout.cc \
37 MTime.cc \
38 MString.cc \
39 MStar.cc \
40 MStarList.cc \
41 MAstro.cc \
42 MAstroCatalog.cc \
43 MAstroCamera.cc \
44 MAstroSky2Local.cc \
45 MGeomMirror.cc \
46 MGeomPix.cc \
47 MGeomCam.cc \
48 MGeomCamMagic.cc \
49 MGMap.cc \
50 MGMenu.cc \
51 MH.cc \
52 MBinning.cc \
53 MHexagon.cc \
54 MCamEvent.cc \
55 MHCamera.cc \
56 msgqueue.cc \
57 MLog.cc \
58 MLogManip.cc \
59 MObservatory.cc \
60 MGList.cc
61
62CINTHEADERS = MStar.h \
63 MGList.h \
64 MTime.h \
65 MString.h \
66 MAstro.h \
67 MAstroSky2Local.h \
68 MAstroCatalog.h \
69 MAstroCamera.h \
70 MGeomMirror.h \
71 MGeomPix.h \
72 MGeomCam.h \
73 MGeomCamMagic.h \
74 MHCamera.h \
75 MBinning.h \
76 MH.h \
77 MGMap.h \
78 MGMenu.h \
79 MHexagon.h \
80 MCamEvent.h \
81 MLog.h \
82 MLogManip.h \
83 MObservatory.h \
84 MParContainer.h
85
86SRCS = $(SRCFILES)
87HEADERS = $(SRCFILES:.cc=.h)
88OBJS = $(SRCFILES:.cc=.o)
89
90############################################################
91
92all: $(LIB)
93
94include ../Makefile.rules
95
96clean: rmlib rmcint rmobjs rmcore
97
98mrproper: clean rmbak
99
100# @endcode
101
Note: See TracBrowser for help on using the repository browser.