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..
|
---|
23 |
|
---|
24 | # @code
|
---|
25 |
|
---|
26 | CINT = Base
|
---|
27 | LIB = base.a
|
---|
28 |
|
---|
29 | #------------------------------------------------------------------------------
|
---|
30 |
|
---|
31 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
32 |
|
---|
33 | SRCFILES = 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 |
|
---|
62 | CINTHEADERS = 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 |
|
---|
86 | SRCS = $(SRCFILES)
|
---|
87 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
88 | OBJS = $(SRCFILES:.cc=.o)
|
---|
89 |
|
---|
90 | ############################################################
|
---|
91 |
|
---|
92 | all: $(LIB)
|
---|
93 |
|
---|
94 | include ../Makefile.rules
|
---|
95 |
|
---|
96 | clean: rmlib rmcint rmobjs rmcore
|
---|
97 |
|
---|
98 | mrproper: clean rmbak
|
---|
99 |
|
---|
100 | # @endcode
|
---|
101 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.