Makefile 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. # Copyright (c) 2002-2006 MontaVista Software, Inc.
  2. # Copyright (c) 2006 Sun Microsystems, Inc.
  3. # Copyright (c) 2006-2007 Red Hat, Inc.
  4. #
  5. # All rights reserved.
  6. #
  7. # This software licensed under BSD license, the text of which follows:
  8. #
  9. # Redistribution and use in source and binary forms, with or without
  10. # modification, are permitted provided that the following conditions are met:
  11. #
  12. # - Redistributions of source code must retain the above copyright notice,
  13. # this list of conditions and the following disclaimer.
  14. # - Redistributions in binary form must reproduce the above copyright notice,
  15. # this list of conditions and the following disclaimer in the documentation
  16. # and/or other materials provided with the distribution.
  17. # - Neither the name of the MontaVista Software, Inc. nor the names of its
  18. # contributors may be used to endorse or promote products derived from this
  19. # software without specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  25. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  26. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  27. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  28. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  29. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  30. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  31. # THE POSSIBILITY OF SUCH DAMAGE.
  32. # Include configuration
  33. #
  34. include $(srcdir)Makefile.inc
  35. override CFLAGS += -I$(srcdir)include
  36. LDFLAGS += -L./
  37. ifeq (${BUILD_DYNAMIC}, 1)
  38. override LDFLAGS += ${DYFLAGS}
  39. endif
  40. ifeq (${OPENAIS_COMPAT}, LINUX)
  41. override LDFLAGS += -ldl
  42. endif
  43. ifeq (${OPENAIS_COMPAT}, SOLARIS)
  44. override LDFLAGS += -lnsl -lsocket -lrt
  45. endif
  46. # Totem objects
  47. TOTEM_SRC = aispoll.c totemip.c totemnet.c totemrrp.c totemsrp.c totemmrp.c totempg.c crypto.c wthread.c
  48. TOTEM_OBJS = aispoll.o totemip.o totemnet.o totemrrp.o totemsrp.o totemmrp.o totempg.o crypto.o wthread.o
  49. LOGSYS_SRC = wthread.c logsys.c
  50. LOGSYS_OBJS = wthread.o logsys.o
  51. EXEC_LIBS = libtotem_pg.a liblogsys.a
  52. # AMF objects
  53. AMF_SRC = amf.c amfutil.c amfnode.c amfcluster.c amfapp.c amfsg.c amfsu.c amfcomp.c amfsi.c
  54. AMF_OBJS = amf.o amfutil.o amfnode.o amfcluster.o amfapp.o amfsg.o amfsu.o amfcomp.o amfsi.o
  55. # LCR objects
  56. LCR_SRC = evs.c clm.c ckpt.c evt.c lck.c msg.c cfg.c cpg.c aisparser.c vsf_ykd.c objdb.c $(AMF_SRC)
  57. LCR_OBJS = evs.o clm.o ckpt.o evt.o lck.o msg.o cfg.o cpg.o aisparser.o vsf_ykd.o objdb.o $(AMF_OBJS)
  58. # main executive objects
  59. MAIN_SRC = main.c mempool.c util.c sync.c service.c ipc.c flow.c timer.c \
  60. totemconfig.c mainconfig.c
  61. MAIN_OBJS = main.o mempool.o util.o sync.o service.o ipc.o flow.o timer.o \
  62. totemconfig.o mainconfig.o ../lcr/lcr_ifact.o
  63. ifeq (${BUILD_DYNAMIC}, 1)
  64. #EXEC_OBJS = $(TOTEM_OBJS) $(LOGSYS_OBJS) $(MAIN_OBJS)
  65. EXEC_OBJS = $(MAIN_OBJS)
  66. override CFLAGS += -fPIC
  67. all:libtotem_pg.a libtotem_pg.so.2.0.0 liblogsys.a liblogsys.so.2.0.0 \
  68. ../lcr/lcr_ifact.o aisexec \
  69. service_evs.lcrso service_clm.lcrso service_amf.lcrso \
  70. service_ckpt.lcrso service_evt.lcrso service_lck.lcrso \
  71. service_msg.lcrso service_cfg.lcrso service_cpg.lcrso \
  72. objdb.lcrso aisparser.lcrso vsf_ykd.lcrso keygen openais-instantiate
  73. else
  74. EXEC_OBJS = $(MAIN_OBJS) $(LCR_OBJS)
  75. all: libtotem_pg.a liblogsys.a aisexec keygen openais-instantiate
  76. endif
  77. ifeq (${OPENAIS_COMPAT}, DARWIN)
  78. service_evs.lcrso: evs.o
  79. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load evs.o -o $@
  80. service_clm.lcrso: clm.o
  81. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load clm.o -o $@
  82. service_amf.lcrso: $(AMF_OBJS)
  83. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load $(AMF_OBJS) -o $@
  84. service_ckpt.lcrso: ckpt.o
  85. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load ckpt.o -o $@
  86. service_evt.lcrso: evt.o
  87. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load evt.o -o $@
  88. service_lck.lcrso: lck.o
  89. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load lck.o -o $@
  90. service_msg.lcrso: msg.o
  91. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load msg.o -o $@
  92. service_cfg.lcrso: cfg.o
  93. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load cfg.o -o $@
  94. service_cpg.lcrso: cpg.o
  95. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load cpg.o -o $@
  96. aisparser.lcrso: aisparser.o
  97. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load aisparser.o -o $@
  98. objdb.lcrso: objdb.o
  99. $(CC) -bundle -bundle_loader ./aisexec -bind_at_load objdb.o -o $@
  100. vsf_ykd.lcrso: vsf_ykd.o
  101. $(CC) $(LDFLAGS) -bundle $(LDFLAGS) -bundle_loader ./aisexec -bind_at_load vsf_ykd.o -o $@
  102. else
  103. service_evs.lcrso: evs.o
  104. $(CC) -shared -Wl,-soname,service_evs.lcrso evs.o -o $@
  105. service_clm.lcrso: clm.o
  106. $(CC) -shared -Wl,-soname,service_clm.lcrso clm.o -o $@
  107. service_amf.lcrso: $(AMF_OBJS)
  108. $(CC) -shared -Wl,-soname,service_amf.lcrso $(AMF_OBJS) -o $@
  109. service_ckpt.lcrso: ckpt.o
  110. $(CC) -shared -Wl,-soname,service_ckpt.lcrso ckpt.o -o $@
  111. service_evt.lcrso: evt.o
  112. $(CC) -shared -Wl,-soname,service_evt.lcrso evt.o -o $@
  113. service_lck.lcrso: lck.o
  114. $(CC) -shared -Wl,-soname,service_lck.lcrso lck.o -o $@
  115. service_msg.lcrso: msg.o
  116. $(CC) -shared -Wl,-soname,service_msg.lcrso msg.o -o $@
  117. service_cfg.lcrso: cfg.o
  118. $(CC) -shared -Wl,-soname,service_cfg.lcrso cfg.o -o $@
  119. service_cpg.lcrso: cpg.o
  120. $(CC) -shared -Wl,-soname,service_cpg.lcrso cpg.o -o $@
  121. aisparser.lcrso: aisparser.o
  122. $(CC) -shared -Wl,-soname,aisparser.lcrso aisparser.o -o $@
  123. vsf_ykd.lcrso: vsf_ykd.o
  124. $(CC) -shared -Wl,-soname,vsf_ykd.lcrso vsf_ykd.o -o $@
  125. objdb.lcrso: objdb.o
  126. $(CC) -shared -Wl,-soname,objdb.lcrso objdb.o -o $@
  127. endif
  128. aisexec: $(EXEC_OBJS) $(EXEC_LIBS)
  129. $(CC) $(LDFLAGS) $(EXEC_OBJS) $(EXEC_LIBS) -o aisexec
  130. libtotem_pg.a: $(TOTEM_OBJS)
  131. $(AR) -rc libtotem_pg.a $(TOTEM_OBJS)
  132. liblogsys.a: $(LOGSYS_OBJS)
  133. $(AR) -rc liblogsys.a $(LOGSYS_OBJS)
  134. ifeq (${OPENAIS_COMPAT}, DARWIN)
  135. libtotem_pg.so.2.0.0: $(TOTEM_OBJS)
  136. $(CC) $(LDFLAGS) -bundle -bind_at_load $(TOTEM_OBJS) -o $@
  137. liblogsys.so.2.0.0: $(LOGSYS_OBJS)
  138. $(CC) $(LDFLAGS) -bundle -bind_at_load $(LOGSYS_OBJS) -o $@
  139. else
  140. libtotem_pg.so.2.0.0: $(TOTEM_OBJS)
  141. $(CC) $(LDFLAGS) -shared -Wl,-soname,libtotem_pg.so.2 $(TOTEM_OBJS) -o $@
  142. liblogsys.so.2.0.0: $(LIBLOGSYS_OBJS)
  143. $(CC) $(LDFLAGS) -shared -Wl,-soname,liblogsys.so.2 $(LOGSYS_OBJS) -o $@
  144. endif
  145. keygen: keygen.o
  146. $(CC) $(LDFLAGS) keygen.o -o keygen
  147. openais-instantiate: openais-instantiate.o
  148. $(CC) $(LDFLAGS) openais-instantiate.o -o openais-instantiate
  149. clean:
  150. rm -f aisexec $(OBJS) *.o *.lcrso libtotem_pg.so* libtotem_pg.a gmon.out keygen keygen.o openais-instantiate *.da *.bb *.bbg
  151. depend:
  152. makedepend -Y -- $(CFLAGS) $(CPPFLAGS) $(EXEC_SRC) $(TOTEM_SRC) $(LOGSYS_SRC) $(LCR_SRC) > /dev/null 2>&1
  153. # - fPIC rules required for service handler shared objects
  154. ../lcr/lcr_ifact.o: ../lcr/lcr_ifact.c
  155. $(CC) $(CFLAGS) $(CPPFLAGS) -DPREFIX='"$(PREFIX)"' -I../lcr -c -o $@ ../lcr/lcr_ifact.c
  156. evs.o: evs.c
  157. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  158. clm.o: clm.c
  159. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  160. amf.o: amf.c
  161. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  162. ckpt.o: ckpt.c
  163. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  164. evt.o: evt.c
  165. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  166. lck.o: lck.c
  167. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  168. msg.o: msg.c
  169. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  170. cfg.o: cfg.c
  171. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  172. aisparser.o: aisparser.c
  173. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  174. vsf_ykd.o: vsf_ykd.c
  175. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  176. cpg.o: cpg.c
  177. $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
  178. objdb.o: objdb.c
  179. $(CC) $(CFLAGS) -c -o $@ $<
  180. # -fPIC rules required for lib totem
  181. aispoll.o: aispoll.c
  182. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  183. totempg.o: totempg.c
  184. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  185. totemsrp.o: totemsrp.c
  186. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  187. totemrrp.o: totemrrp.c
  188. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  189. totemip.o: totemip.c
  190. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  191. totemnet.o: totemnet.c
  192. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  193. wthread.o: wthread.c
  194. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  195. crypto.o: crypto.c
  196. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  197. totemmrp.o: totemmrp.c
  198. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  199. totemconfig.o: totemconfig.c
  200. $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $<
  201. # DO NOT DELETE
  202. aispoll.o: aispoll.h ../include/list.h ../include/hdb.h tlist.h
  203. totemip.o: totemip.h ../include/swab.h
  204. totemnet.o: aispoll.h totemnet.h totem.h totemip.h wthread.h
  205. totemnet.o: ../include/queue.h ../include/sq.h ../include/list.h
  206. totemnet.o: ../include/hdb.h ../include/swab.h crypto.h
  207. totemrrp.o: ../include/queue.h ../include/sq.h ../include/list.h
  208. totemrrp.o: ../include/hdb.h ../include/swab.h aispoll.h totemnet.h totem.h totemip.h
  209. totemrrp.o: totemrrp.h
  210. totemsrp.o: aispoll.h totemsrp.h totem.h totemip.h totemrrp.h wthread.h
  211. totemsrp.o: ../include/queue.h ../include/sq.h ../include/list.h
  212. totemsrp.o: ../include/hdb.h ../include/swab.h crypto.h
  213. totemmrp.o: totem.h totemip.h totemsrp.h aispoll.h
  214. totempg.o: ../include/hdb.h totempg.h aispoll.h totemsrp.h totem.h totemip.h
  215. totempg.o: totemmrp.h ../include/swab.h
  216. tlist.o: ../include/list.h tlist.h
  217. crypto.o: crypto.h
  218. wthread.o: wthread.h ../include/queue.h
  219. evs.o: totem.h totemip.h ../include/saAis.h ../include/ipc_gen.h
  220. evs.o: ../exec/totemip.h ../include/ipc_evs.h ../include/saAis.h
  221. evs.o: ../include/evs.h ../include/ipc_gen.h ../include/list.h
  222. evs.o: ../include/queue.h ../lcr/lcr_comp.h aispoll.h totempg.h totemsrp.h
  223. evs.o: main.h ../include/saClm.h mainconfig.h objdb.h mempool.h service.h
  224. evs.o: logsys.h
  225. clm.o: totem.h totemip.h ../include/saAis.h ../include/saClm.h
  226. clm.o: ../include/saAis.h ../include/ipc_gen.h ../exec/totemip.h
  227. clm.o: ../include/ipc_clm.h ../include/saClm.h ../include/ipc_gen.h
  228. clm.o: ../include/mar_clm.h ../include/mar_gen.h ../include/mar_gen.h
  229. clm.o: ../include/mar_clm.h ../include/list.h ../include/queue.h
  230. clm.o: ../lcr/lcr_comp.h aispoll.h totempg.h totemsrp.h main.h mainconfig.h
  231. clm.o: objdb.h mempool.h service.h ../include/swab.h logsys.h
  232. ckpt.o: ../include/saAis.h ../include/saCkpt.h ../include/ipc_ckpt.h
  233. ckpt.o: ../include/saAis.h ../include/saCkpt.h ../include/ipc_gen.h
  234. ckpt.o: ../include/list.h ../include/queue.h ../include/hdb.h
  235. ckpt.o: ../lcr/lcr_comp.h aispoll.h service.h totem.h totemip.h objdb.h
  236. ckpt.o: mempool.h util.h main.h ../include/saClm.h ../include/ipc_gen.h
  237. ckpt.o: ../exec/totemip.h mainconfig.h totemsrp.h totempg.h logsys.h
  238. evt.o: ../include/hdb.h ../include/ipc_evt.h ../include/saAis.h
  239. evt.o: ../include/saEvt.h ../include/saClm.h ../include/ipc_gen.h
  240. evt.o: ../include/list.h ../include/queue.h ../lcr/lcr_comp.h util.h
  241. evt.o: ../include/saAis.h service.h totem.h totemip.h objdb.h aispoll.h
  242. evt.o: mempool.h main.h ../include/saClm.h ../include/ipc_gen.h
  243. evt.o: ../exec/totemip.h mainconfig.h totemsrp.h totempg.h ../include/swab.h logsys.h
  244. lck.o: service.h totem.h totemip.h objdb.h ../include/saAis.h
  245. lck.o: ../include/saLck.h ../include/ipc_lck.h ../include/saAis.h
  246. lck.o: ../include/saLck.h ../include/ipc_gen.h ../include/list.h
  247. lck.o: ../include/queue.h ../lcr/lcr_comp.h aispoll.h mempool.h util.h main.h
  248. lck.o: ../include/saClm.h ../include/ipc_gen.h ../exec/totemip.h mainconfig.h
  249. lck.o: totemsrp.h totempg.h logsys.h
  250. msg.o: ../include/saAis.h ../include/saMsg.h ../include/ipc_msg.h
  251. msg.o: ../include/saAis.h ../include/saMsg.h ../include/ipc_gen.h
  252. msg.o: ../include/list.h ../include/queue.h ../lcr/lcr_comp.h service.h
  253. msg.o: totem.h totemip.h objdb.h aispoll.h mempool.h util.h main.h
  254. msg.o: ../include/saClm.h ../include/ipc_gen.h ../exec/totemip.h mainconfig.h
  255. msg.o: totemsrp.h totempg.h logsys.h
  256. cfg.o: ../include/saAis.h ../include/cfg.h ../include/saAis.h
  257. cfg.o: ../include/ipc_gen.h ../exec/totemip.h ../include/ipc_cfg.h
  258. cfg.o: ../include/ipc_gen.h ../include/cfg.h ../include/list.h
  259. cfg.o: ../include/queue.h ../lcr/lcr_comp.h service.h totem.h totemip.h
  260. cfg.o: objdb.h totempg.h aispoll.h totemsrp.h mempool.h util.h logsys.h
  261. cfg.o: mainconfig.h
  262. cpg.o: ../include/saAis.h ../include/saClm.h ../include/saAis.h
  263. cpg.o: ../include/ipc_gen.h ../exec/totemip.h ../include/ipc_cpg.h
  264. cpg.o: ../include/ipc_gen.h ../include/list.h ../include/queue.h
  265. cpg.o: ../lcr/lcr_comp.h aispoll.h totempg.h totemsrp.h totem.h totemip.h
  266. cpg.o: main.h mainconfig.h objdb.h mempool.h service.h jhash.h ../include/swab.h logsys.h
  267. aisparser.o: ../lcr/lcr_comp.h objdb.h config.h mempool.h ../include/list.h
  268. aisparser.o: util.h ../include/saAis.h
  269. vsf_ykd.o: main.h ../include/saAis.h ../include/saClm.h ../include/saAis.h
  270. vsf_ykd.o: ../include/queue.h ../include/ipc_gen.h ../exec/totemip.h
  271. vsf_ykd.o: mainconfig.h ../include/list.h aispoll.h totemsrp.h totem.h
  272. vsf_ykd.o: totemip.h totempg.h objdb.h logsys.h ../include/swab.h vsf.h ../lcr/lcr_comp.h
  273. amf.o: ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  274. amf.o: ../include/ipc_gen.h ../exec/totemip.h ../include/ipc_amf.h
  275. amf.o: ../include/ipc_gen.h ../include/saAmf.h ../include/list.h
  276. amf.o: ../lcr/lcr_comp.h totempg.h aispoll.h totemsrp.h totem.h totemip.h
  277. amf.o: mempool.h util.h amf.h objdb.h main.h ../include/saClm.h
  278. amf.o: ../include/queue.h mainconfig.h service.h logsys.h
  279. amfutil.o: ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  280. amfutil.o: ../include/ipc_amf.h ../include/ipc_gen.h ../include/saAmf.h
  281. amfutil.o: ../include/list.h util.h amf.h ../include/ipc_gen.h
  282. amfutil.o: ../exec/totemip.h aispoll.h objdb.h totem.h totemip.h logsys.h
  283. amfutil.o: mainconfig.h totemsrp.h totempg.h
  284. amfcluster.o: logsys.h mainconfig.h ../include/saAis.h ../include/list.h
  285. amfcluster.o: aispoll.h totemsrp.h totem.h totemip.h totempg.h objdb.h amf.h
  286. amfcluster.o: ../include/saAmf.h ../include/saAis.h ../include/ipc_gen.h
  287. amfcluster.o: ../exec/totemip.h util.h main.h ../include/saClm.h
  288. amfcluster.o: ../include/queue.h
  289. amfapp.o: amf.h ../include/saAis.h ../include/saAmf.h
  290. amfapp.o: ../include/saAis.h ../include/list.h ../include/ipc_gen.h
  291. amfapp.o: ../exec/totemip.h aispoll.h objdb.h logsys.h mainconfig.h
  292. amfapp.o: totemsrp.h totem.h totemip.h totempg.h
  293. amfsg.o: amf.h ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  294. amfsg.o: ../include/list.h ../include/ipc_gen.h ../exec/totemip.h aispoll.h
  295. amfsg.o: objdb.h logsys.h mainconfig.h totemsrp.h totem.h totemip.h totempg.h
  296. amfsg.o: main.h ../include/saClm.h ../include/queue.h
  297. amfsu.o: amf.h ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  298. amfsu.o: ../include/list.h ../include/ipc_gen.h ../exec/totemip.h aispoll.h
  299. amfsu.o: objdb.h util.h logsys.h mainconfig.h totemsrp.h totem.h totemip.h
  300. amfsu.o: totempg.h main.h ../include/saClm.h ../include/queue.h
  301. amfcomp.o: ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  302. amfcomp.o: ../include/ipc_gen.h ../exec/totemip.h ../include/ipc_amf.h
  303. amfcomp.o: ../include/ipc_gen.h ../include/saAmf.h totempg.h aispoll.h
  304. amfcomp.o: totemsrp.h totem.h totemip.h main.h ../include/saClm.h
  305. amfcomp.o: ../include/queue.h mainconfig.h ../include/list.h objdb.h
  306. amfcomp.o: service.h util.h amf.h logsys.h
  307. amfsi.o: amf.h ../include/saAis.h ../include/saAmf.h ../include/saAis.h
  308. amfsi.o: ../include/list.h ../include/ipc_gen.h ../exec/totemip.h aispoll.h
  309. amfsi.o: objdb.h logsys.h mainconfig.h totemsrp.h totem.h totemip.h totempg.h