Makefile 15 KB

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