source: trunk/MagicSoft/Cosy/Makefile@ 3676

Last change on this file since 3676 was 2615, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 3.9 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#
21
22PROGRAMS = testse starg cosy bend
23SOLIB = cosy.so
24CINT = M
25INCLUDES = -I. -Imain -Ibase -Icandrv -Iincl -Igui -Ivideodev -Icatalog -Idevdrv
26LIBS = -lpng -lz -L/usr/X11R6/lib -lpthread
27
28#
29# connect the include files defined in the config.mk file
30#
31# WARNING: the result (whether the linkage works or not) depends on the
32# order of the libraries. It seems, that the most base library
33# must be the last one
34#
35
36#
37# ----->>> mars libraries
38#
39SUBDIRS = \
40 main \
41 tcpip \
42 gui \
43 catalog \
44 videodev \
45 devdrv \
46 candrv \
47 caos \
48 base \
49 slalib
50
51LIBRARIES = $(SUBDIRS:=.a)
52
53#------------------------------------------------------------------------------
54
55.SUFFIXES: .c .cc .h .o
56
57SRCFILES =
58
59SRCS = $(SRCFILES)
60HEADERS = $(SRCFILES:.cc=.h)
61OBJS = $(SRCFILES:.cc=.o)
62
63############################################################
64
65all: rmlib $(PROGRAMS) $(SOLIB)
66
67# Use $(CXX) -v ... for a more verbose output
68#
69# We could link mars.so instead of all libraries. This would need
70# some MBs less space on the HD. But this means, that the Shared
71# Library Path in your system must be set properly to be able to start
72# 'mars'
73#
74$(PROGRAMS): $(LIBRARIES) $(OBJS) $(HEADERS) $(PROGRAMS:=.o)
75 @echo " Linking $@ ..."
76 $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) $@.o $(MARS_LIB) $(ROOTGLIBS) -o $@
77
78$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
79 @echo " Linking $(SOLIB) ..."
80 $(CXX) -shared $(CXXFLAGS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
81 mv cosy.so lib
82
83$(LIBRARIES):
84 @echo " "
85 @echo " Creating lib$@:"
86 (cd $*; make -f Makefile; cd ..; mv $*/$@ lib/lib$@)
87
88dox:
89 @echo " Creating html documentation:"
90 root -b -q dohtml.C
91
92include Makefile.rules
93
94clean: rmlib rmcint rmobjs rmcore rmbin
95
96mrproper: clean rmbak
97 @rm -f macros/*~
98 @rm -rf htmldoc
99 @echo "cd base"
100 @cd base; make mrproper; cd ..
101 @echo "cd .."
102 @echo "cd caos"
103 @cd caos; make mrproper; cd ..
104 @echo "cd .."
105 @echo "cd candrv"
106 @cd candrv; make mrproper; cd ..
107 @echo "cd .."
108 @echo "cd devdrv"
109 @cd devdrv; make mrproper; cd ..
110 @echo "cd .."
111 @echo "cd gui"
112 @cd gui; make mrproper; cd ..
113 @echo "cd .."
114 @echo "cd videodev"
115 @cd videodev; make mrproper; cd ..
116 @echo "cd .."
117 @echo "cd tcpip"
118 @cd tcpip; make mrproper; cd ..
119 @echo "cd .."
120 @echo "cd catalog"
121 @cd catalog; make mrproper; cd ..
122 @echo "cd .."
123 @echo "cd main"
124 @cd main; make mrproper; cd ..
125 @echo "cd .."
126
127links:
128 @ln -sf ../../Mars/mbase/MAGIC.h base/MAGIC.h
129 @ln -sf ../../Mars/mbase/MLog.h base/MLog.h
130 @ln -sf ../../Mars/mbase/MLog.cc base/MLog.cc
131 @ln -sf ../../Mars/mbase/MLogManip.h base/MLogManip.h
132 @ln -sf ../../Mars/mbase/MLogManip.cc base/MLogManip.cc
133 @ln -sf ../../Mars/mbase/MAstro.h base/MAstro.h
134 @ln -sf ../../Mars/mbase/MAstro.cc base/MAstro.cc
135 @ln -sf ../../Mars/mbase/MGList.h base/MGList.h
136 @ln -sf ../../Mars/mbase/MGList.cc base/MGList.cc
137 @ln -sf ../../Mars/mbase/MTime.h base/MTime.h
138 @ln -sf ../../Mars/mbase/MTime.cc base/MTime.cc
139 @ln -sf ../../Mars/mbase/MParContainer.h base/MParContainer.h
140 @ln -sf ../../Mars/mbase/MParContainer.cc base/MParContainer.cc
141 @ln -sf ../../Mars/mtemp/MObservatory.h base/MObservatory.h
142 @ln -sf ../../Mars/mtemp/MObservatory.cc base/MObservatory.cc
143
144magic:
145 @ln -sf bending_magic.txt bending.txt
146 @ln -sf prepos_magic.txt prepos.txt
147 @ln -sf .cosyrc_magic .cosyrc
148
149model:
150 @ln -sf bending_model.txt bending.txt
151 @ln -sf prepos_model.txt prepos.txt
152 @ln -sf .cosyrc_model .cosyrc
153
154tar: mrproper
155 @echo "Making tar-file"
156 @tar -cvf ../cosy.tar *
157 @gzip -9 ../cosy.tar
158
159# @endcode
Note: See TracBrowser for help on using the repository browser.