Line | |
---|
1 | MODULECXXREPNAME := ProgPI
|
---|
2 | MODULEDECCXXFLAGS := -msg_quiet
|
---|
3 | include ../Mgr/Makefile.h
|
---|
4 |
|
---|
5 | ifdef NOSHLIB
|
---|
6 | LIBF = $(LIB)libTArray.a $(LIB)libSysTools.a $(LIB)libNTools.a $(LIB)libSkyMap.a $(LIB)libSamba.a $(LIB)libSkyT.a $(LIB)libFitsIOServer.a $(LIB)libPI.a $(LIB)libPIext.a
|
---|
7 | LIBS = -L$(LIB) -lTArray -lSysTools -lNTools -lSkyMap -lSamba -lSkyT -lFitsIOServer -lPI -lPIext -lm
|
---|
8 | ifeq ($(CXX),cxx)
|
---|
9 | # librairie des instances de templates cxx
|
---|
10 | LIBS := $(LIBS) -lertcxx
|
---|
11 | endif
|
---|
12 | else
|
---|
13 | LIBF = $(SLB)libPI.so $(SLB)libsophya.so $(SLB)libextsophya.so
|
---|
14 | LIBS = -L$(SLB) -lPI -lsophya -lextsophya -lm
|
---|
15 | endif
|
---|
16 | LIBSORA := $(LIBS)
|
---|
17 | ifdef ORACLE_HOME
|
---|
18 | LIBSORA := -L$(LIB) -lDb++ $(LIBS) -lErosDb -L$(ORACLE_HOME)/lib -lclntsh
|
---|
19 | endif
|
---|
20 | LDLIBS := $(LIBS) $(LDLIBS)
|
---|
21 | PROGS = $(EXE)spiapp
|
---|
22 |
|
---|
23 | all: $(PROGS)
|
---|
24 |
|
---|
25 | clean:
|
---|
26 | rm -f $(PROGS)
|
---|
27 | if [ -d $(OBJ)cxxrep_ProgPI ] ; then cd $(OBJ)cxxrep_ProgPI ; rm -f *.o ; fi
|
---|
28 |
|
---|
29 | spiapp: $(EXE)spiapp
|
---|
30 |
|
---|
31 | $(EXE)spiapp: $(OBJ)piapp.o $(OBJ)sopiamodule.o
|
---|
32 | $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
---|
33 |
|
---|
34 | $(OBJ)piapp.o: piapp.cc $(INC)pistdimgapp.h \
|
---|
35 | $(INC)pisysdep.h \
|
---|
36 | $(INC)machdefs.h \
|
---|
37 | $(INC)piapplx.h \
|
---|
38 | $(INC)piapplgen.h \
|
---|
39 | $(INC)pimsghandler.h \
|
---|
40 | $(INC)picontainerx.h \
|
---|
41 | $(INC)picontainergen.h \
|
---|
42 | $(INC)piwdgx.h \
|
---|
43 | $(INC)piwdggen.h \
|
---|
44 | $(INC)pimenubarx.h \
|
---|
45 | $(INC)pimenubargen.h \
|
---|
46 | $(INC)pimenux.h \
|
---|
47 | $(INC)pimenugen.h \
|
---|
48 | $(INC)picons.h \
|
---|
49 | $(INC)pistdwdgx.h \
|
---|
50 | $(INC)pistdwdggen.h \
|
---|
51 | $(INC)pibwdgx.h \
|
---|
52 | $(INC)pibwdggen.h \
|
---|
53 | $(INC)picmap.h \
|
---|
54 | $(INC)picmapx.h \
|
---|
55 | $(INC)picmapgen.h \
|
---|
56 | $(INC)pigraphx.h \
|
---|
57 | $(INC)pigraphgen.h \
|
---|
58 | $(INC)pifontx.h \
|
---|
59 | $(INC)pifontgen.h \
|
---|
60 | $(INC)pigraphuc.h \
|
---|
61 | $(INC)pievthandler.h \
|
---|
62 | $(INC)psfile.h \
|
---|
63 | $(INC)pigraphps.h \
|
---|
64 | $(INC)piwindowx.h \
|
---|
65 | $(INC)piwindowgen.h \
|
---|
66 | $(INC)pioptmenux.h \
|
---|
67 | $(INC)pioptmenugen.h \
|
---|
68 | $(INC)pifilechox.h \
|
---|
69 | $(INC)pifilechogen.h \
|
---|
70 | $(INC)piimage.h \
|
---|
71 | $(INC)parradapter.h \
|
---|
72 | $(INC)lut.h \
|
---|
73 | $(INC)pidrawer.h \
|
---|
74 | $(INC)pipixmapx.h \
|
---|
75 | $(INC)pipixmapgen.h \
|
---|
76 | $(INC)picmapview.h \
|
---|
77 | $(INC)pi3ddrw.h \
|
---|
78 | $(INC)pigraph3d.h \
|
---|
79 | $(INC)nobjmgr.h \
|
---|
80 | $(INC)anydataobj.h \
|
---|
81 | $(INC)ppersist.h \
|
---|
82 | $(INC)pexceptions.h \
|
---|
83 | $(INC)gnumd5.h \
|
---|
84 | $(INC)dlftypes.h \
|
---|
85 | $(INC)piacmd.h \
|
---|
86 | $(INC)pdlmgr.h \
|
---|
87 | $(INC)pisiadw.h \
|
---|
88 | $(INC)pilistx.h \
|
---|
89 | $(INC)pilistgen.h \
|
---|
90 | $(INC)pistzwin.h \
|
---|
91 | $(INC)piperiodx.h \
|
---|
92 | $(INC)periodic.h \
|
---|
93 | $(INC)piversion.h \
|
---|
94 | $(INC)piaversion.h \
|
---|
95 | $(INC)timing.h \
|
---|
96 | $(INC)skyinit.h \
|
---|
97 | $(INC)ntoolsinit.h \
|
---|
98 | $(INC)tarrinit.h \
|
---|
99 | $(INC)sophyainit.h
|
---|
100 | $(OBJ)sopiamodule.o: sopiamodule.cc \
|
---|
101 | $(INC)machdefs.h \
|
---|
102 | $(INC)piacmd.h \
|
---|
103 | $(INC)dlftypes.h \
|
---|
104 | $(INC)pdlmgr.h \
|
---|
105 | $(INC)nobjmgr.h \
|
---|
106 | $(INC)anydataobj.h \
|
---|
107 | $(INC)ppersist.h \
|
---|
108 | $(INC)pexceptions.h \
|
---|
109 | $(INC)gnumd5.h \
|
---|
110 | $(INC)pistdimgapp.h \
|
---|
111 | $(INC)pisysdep.h \
|
---|
112 | $(INC)piapplx.h \
|
---|
113 | $(INC)piapplgen.h \
|
---|
114 | $(INC)pimsghandler.h \
|
---|
115 | $(INC)picontainerx.h \
|
---|
116 | $(INC)picontainergen.h \
|
---|
117 | $(INC)piwdgx.h \
|
---|
118 | $(INC)piwdggen.h \
|
---|
119 | $(INC)pimenubarx.h \
|
---|
120 | $(INC)pimenubargen.h \
|
---|
121 | $(INC)pimenux.h \
|
---|
122 | $(INC)pimenugen.h \
|
---|
123 | $(INC)picons.h \
|
---|
124 | $(INC)pistdwdgx.h \
|
---|
125 | $(INC)pistdwdggen.h \
|
---|
126 | $(INC)pibwdgx.h \
|
---|
127 | $(INC)pibwdggen.h \
|
---|
128 | $(INC)picmap.h \
|
---|
129 | $(INC)picmapx.h \
|
---|
130 | $(INC)picmapgen.h \
|
---|
131 | $(INC)pigraphx.h \
|
---|
132 | $(INC)pigraphgen.h \
|
---|
133 | $(INC)pifontx.h \
|
---|
134 | $(INC)pifontgen.h \
|
---|
135 | $(INC)pigraphuc.h \
|
---|
136 | $(INC)pievthandler.h \
|
---|
137 | $(INC)psfile.h \
|
---|
138 | $(INC)pigraphps.h \
|
---|
139 | $(INC)piwindowx.h \
|
---|
140 | $(INC)piwindowgen.h \
|
---|
141 | $(INC)pioptmenux.h \
|
---|
142 | $(INC)pioptmenugen.h \
|
---|
143 | $(INC)pifilechox.h \
|
---|
144 | $(INC)pifilechogen.h \
|
---|
145 | $(INC)piimage.h \
|
---|
146 | $(INC)parradapter.h \
|
---|
147 | $(INC)lut.h \
|
---|
148 | $(INC)pidrawer.h \
|
---|
149 | $(INC)pipixmapx.h \
|
---|
150 | $(INC)pipixmapgen.h \
|
---|
151 | $(INC)picmapview.h \
|
---|
152 | $(INC)pi3ddrw.h \
|
---|
153 | $(INC)pigraph3d.h \
|
---|
154 | $(INC)pisiadw.h \
|
---|
155 | $(INC)pilistx.h \
|
---|
156 | $(INC)pilistgen.h \
|
---|
157 | $(INC)pistzwin.h \
|
---|
158 | $(INC)piperiodx.h \
|
---|
159 | $(INC)periodic.h \
|
---|
160 | $(INC)servnobjm.h \
|
---|
161 | $(INC)tvector.h \
|
---|
162 | $(INC)tmatrix.h \
|
---|
163 | $(INC)tarray.h \
|
---|
164 | $(INC)basarr.h \
|
---|
165 | $(INC)dvlist.h \
|
---|
166 | $(INC)objfio.h \
|
---|
167 | $(INC)ndatablock.h \
|
---|
168 | $(INC)utilarr.h \
|
---|
169 | $(INC)pitvmaad.h \
|
---|
170 | $(INC)fftpserver.h \
|
---|
171 | $(INC)fftservintf.h \
|
---|
172 | $(INC)bruit.h \
|
---|
173 | $(INC)piscdrawwdg.h \
|
---|
174 | $(INC)ctimer.h
|
---|
Note:
See
TracBrowser
for help on using the repository browser.