home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / Src / submit / Makefile < prev    next >
Encoding:
Makefile  |  1991-12-18  |  15.9 KB  |  590 lines

  1. # Submit - the pp submission agent
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Src/submit/RCS/Makefile,v 6.0 1991/12/18 20:28:02 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:28:02  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SRCS =  ad_mgt.c auth.c auth_logs.c auth_tb.c auth_ut.c ch_bind.c \
  21.            gen_io2dr.c gen_ndr.c gen_probedr.c gen_warn.c \
  22.        rd_rfchdr.c submit.c submit_srvr.c\
  23.            submit_chk.c submit_mgt.c submit_prm.c submit_que.c submit_txt.c
  24.            
  25. OBJS =  ad_mgt.o auth.o auth_logs.o auth_tb.o auth_ut.o ch_bind.o \
  26.            gen_io2dr.o gen_ndr.o gen_probedr.o gen_warn.o \
  27.        rd_rfchdr.o submit.o submit_srvr.o \
  28.            submit_chk.o submit_mgt.o submit_prm.o submit_que.o submit_txt.o
  29.            
  30. # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT
  31.  
  32. HEADERS         = ../../h
  33. LIBPP           = ../../Lib/libpp.a
  34. CFLAGS          = $(CCOPTIONS) $(LCF) -I. -I$(HEADERS)
  35. # CFLAGS          = $(CCOPTIONS) $(LCF) -I$(HEADERS)
  36. # CFLAGS          = $(CCOPTIONS) $(LCF) -I./h -I$(HEADERS)
  37. LINTLIBS        = ../../Lib/llib-lpp.ln $(LINTISODE)
  38. LDFLAGS         = $(LDOPTIONS) $(LLF)
  39. LLFLAGS         = $(LINTFLAGS) -I$(HEADERS)
  40.  
  41. ############################################################
  42. #
  43. # Building rules
  44. #
  45. ############################################################
  46.  
  47. PROGS = xsubmit
  48.  
  49. default: $(PROGS)
  50.  
  51. xtrdrfc:     t-rd_rfchdr.o rd_rfchdr.o $(LIBPP)
  52.           $(CC) $(LDFLAGS) t-rd_rfchdr.o rd_rfchdr.o \
  53.           $(LIBPP) $(LIBSYS) -o $@
  54.  
  55. xt-trace:     t-tracecheck.o $(LIBPP)
  56.           $(CC) $(LDFLAGS) t-tracecheck.o $(LIBPP) \
  57.           $(LIBSYS) -o $@
  58.  
  59. AUTHOBJS    = t-auth.o auth.o auth_logs.o auth_tb.o auth_ut.o ch_bind.o
  60. xt-auth:    $(AUTHOBJS) $(LIBPP)
  61.         $(CC) $(LDFLAGS) -o $@ $(AUTHOBJS) $(LIBPP) $(LIBSYS)
  62.  
  63. xsubmit: $(OBJS) $(LIBPP)
  64.     $(CC) $(LDFLAGS) $(OBJS) $(LIBPP) $(LIBSYS) -o xsubmit
  65.  
  66. saber_src: $(SRCS)
  67.     #load -C $(CFLAGS) $(SRCS) $(LIBPP) $(LIBSYS)
  68.  
  69. saber_obj: $(OBJS)
  70.     #load -C $(OBJS) $(LIBPP) $(LIBSYS)
  71.  
  72. lint: l-submit
  73. l-submit: $(SRCS)
  74.     $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS)
  75.  
  76. clean: tidy
  77.     rm -f $(OBJS) *.o
  78.  
  79. tidy:
  80.     rm -f zxsubmit xsubmit core a.out *.old *.BAK
  81.     rm -f xtdrfc xt-trace t-rd_rfchdr.o t-tracecheck.o
  82.  
  83.  
  84. install: inst-dir inst-submit
  85. inst-submit: $(CMDDIR)/submit
  86. $(CMDDIR)/submit: xsubmit
  87.     -$(BACKUP) $@ zxsubmit
  88.     rm -f $@
  89.     $(INSTALL) xsubmit $@
  90.     -$(CHOWN) $(PPUSER) $@
  91.     -$(CHMOD) 4755 $@
  92.     -@ls -ls $@
  93.     -@echo "submit installed normally"; echo ""
  94.  
  95. inst-dir: $(CMDDIR)
  96.  
  97.  
  98. define:
  99.     $(DEFINE) Makefile
  100.  
  101. depend:
  102.     $(DEPEND) -I$(HEADERS) $(SRCS)
  103.  
  104.  
  105. ############################################################
  106. #
  107. # End of building rules
  108. #
  109. ############################################################
  110.  
  111. # DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
  112. # Dependencies follow
  113. ad_mgt.o: ad_mgt.c
  114. ad_mgt.o: ../../h/util.h
  115. ad_mgt.o: ../../h/config.h
  116. ad_mgt.o: ../../h/ll_log.h
  117. ad_mgt.o: ../../h/retcode.h
  118. ad_mgt.o: ../../h/q.h
  119. ad_mgt.o: ../../h/adr.h
  120. ad_mgt.o: ../../h/list_rchan.h
  121. ad_mgt.o: ../../h/chan.h
  122. ad_mgt.o: ../../h/table.h
  123. ad_mgt.o: ../../h/list_bpt.h
  124. ad_mgt.o: ../../h/auth.h
  125. ad_mgt.o: ../../h/list_bpt.h
  126. ad_mgt.o: ../../h/extension.h
  127. ad_mgt.o: ../../h/mta.h
  128. ad_mgt.o: ../../h/adr.h
  129. ad_mgt.o: ../../h/list_bpt.h
  130. ad_mgt.o: ../../h/aparse.h
  131. ad_mgt.o: ../../h/ap.h
  132. ad_mgt.o: ../../h/util.h
  133. ad_mgt.o: ../../h/or.h
  134. ad_mgt.o: ../../h/chan.h
  135. ad_mgt.o: ../../h/auth.h
  136. ad_mgt.o: ../../h/list_rchan.h
  137. ad_mgt.o: ../../h/mta.h
  138. ad_mgt.o: ../../h/dr.h
  139. ad_mgt.o: ../../h/extension.h
  140. ad_mgt.o: ../../h/mta.h
  141. ad_mgt.o: ../../h/ap.h
  142. auth.o: auth.c
  143. auth.o: ../../h/head.h
  144. auth.o: ../../h/util.h
  145. auth.o: ../../h/config.h
  146. auth.o: ../../h/ll_log.h
  147. auth.o: ../../h/retcode.h
  148. auth.o: ../../h/q.h
  149. auth.o: ../../h/adr.h
  150. auth.o: ../../h/list_rchan.h
  151. auth.o: ../../h/chan.h
  152. auth.o: ../../h/table.h
  153. auth.o: ../../h/list_bpt.h
  154. auth.o: ../../h/auth.h
  155. auth.o: ../../h/list_bpt.h
  156. auth.o: ../../h/extension.h
  157. auth.o: ../../h/mta.h
  158. auth.o: ../../h/adr.h
  159. auth.o: ../../h/list_bpt.h
  160. auth.o: ../../h/aparse.h
  161. auth.o: ../../h/ap.h
  162. auth.o: ../../h/util.h
  163. auth.o: ../../h/or.h
  164. auth.o: ../../h/chan.h
  165. auth.o: ../../h/auth.h
  166. auth.o: ../../h/list_rchan.h
  167. auth.o: ../../h/mta.h
  168. auth.o: ../../h/dr.h
  169. auth.o: ../../h/extension.h
  170. auth.o: ../../h/mta.h
  171. auth.o: ../../h/tb_auth.h
  172. auth_logs.o: auth_logs.c
  173. auth_logs.o: ../../h/util.h
  174. auth_logs.o: ../../h/config.h
  175. auth_logs.o: ../../h/ll_log.h
  176. auth_logs.o: ../../h/q.h
  177. auth_logs.o: ../../h/adr.h
  178. auth_logs.o: ../../h/list_rchan.h
  179. auth_logs.o: ../../h/chan.h
  180. auth_logs.o: ../../h/table.h
  181. auth_logs.o: ../../h/list_bpt.h
  182. auth_logs.o: ../../h/auth.h
  183. auth_logs.o: ../../h/list_bpt.h
  184. auth_logs.o: ../../h/extension.h
  185. auth_logs.o: ../../h/mta.h
  186. auth_logs.o: ../../h/adr.h
  187. auth_logs.o: ../../h/list_bpt.h
  188. auth_logs.o: ../../h/aparse.h
  189. auth_logs.o: ../../h/ap.h
  190. auth_logs.o: ../../h/util.h
  191. auth_logs.o: ../../h/or.h
  192. auth_logs.o: ../../h/chan.h
  193. auth_logs.o: ../../h/auth.h
  194. auth_logs.o: ../../h/list_rchan.h
  195. auth_logs.o: ../../h/mta.h
  196. auth_tb.o: auth_tb.c
  197. auth_tb.o: ../../h/util.h
  198. auth_tb.o: ../../h/config.h
  199. auth_tb.o: ../../h/ll_log.h
  200. auth_tb.o: ../../h/q.h
  201. auth_tb.o: ../../h/adr.h
  202. auth_tb.o: ../../h/list_rchan.h
  203. auth_tb.o: ../../h/chan.h
  204. auth_tb.o: ../../h/table.h
  205. auth_tb.o: ../../h/list_bpt.h
  206. auth_tb.o: ../../h/auth.h
  207. auth_tb.o: ../../h/list_bpt.h
  208. auth_tb.o: ../../h/extension.h
  209. auth_tb.o: ../../h/mta.h
  210. auth_tb.o: ../../h/adr.h
  211. auth_tb.o: ../../h/list_bpt.h
  212. auth_tb.o: ../../h/aparse.h
  213. auth_tb.o: ../../h/ap.h
  214. auth_tb.o: ../../h/util.h
  215. auth_tb.o: ../../h/or.h
  216. auth_tb.o: ../../h/chan.h
  217. auth_tb.o: ../../h/auth.h
  218. auth_tb.o: ../../h/list_rchan.h
  219. auth_tb.o: ../../h/mta.h
  220. auth_tb.o: ../../h/tb_auth.h
  221. auth_ut.o: auth_ut.c
  222. auth_ut.o: ../../h/util.h
  223. auth_ut.o: ../../h/config.h
  224. auth_ut.o: ../../h/ll_log.h
  225. auth_ut.o: ../../h/q.h
  226. auth_ut.o: ../../h/adr.h
  227. auth_ut.o: ../../h/list_rchan.h
  228. auth_ut.o: ../../h/chan.h
  229. auth_ut.o: ../../h/table.h
  230. auth_ut.o: ../../h/list_bpt.h
  231. auth_ut.o: ../../h/auth.h
  232. auth_ut.o: ../../h/list_bpt.h
  233. auth_ut.o: ../../h/extension.h
  234. auth_ut.o: ../../h/mta.h
  235. auth_ut.o: ../../h/adr.h
  236. auth_ut.o: ../../h/list_bpt.h
  237. auth_ut.o: ../../h/aparse.h
  238. auth_ut.o: ../../h/ap.h
  239. auth_ut.o: ../../h/util.h
  240. auth_ut.o: ../../h/or.h
  241. auth_ut.o: ../../h/chan.h
  242. auth_ut.o: ../../h/auth.h
  243. auth_ut.o: ../../h/list_rchan.h
  244. auth_ut.o: ../../h/mta.h
  245. ch_bind.o: ch_bind.c
  246. ch_bind.o: ../../h/head.h
  247. ch_bind.o: ../../h/util.h
  248. ch_bind.o: ../../h/config.h
  249. ch_bind.o: ../../h/ll_log.h
  250. ch_bind.o: ../../h/retcode.h
  251. ch_bind.o: ../../h/q.h
  252. ch_bind.o: ../../h/adr.h
  253. ch_bind.o: ../../h/list_rchan.h
  254. ch_bind.o: ../../h/chan.h
  255. ch_bind.o: ../../h/table.h
  256. ch_bind.o: ../../h/list_bpt.h
  257. ch_bind.o: ../../h/auth.h
  258. ch_bind.o: ../../h/list_bpt.h
  259. ch_bind.o: ../../h/extension.h
  260. ch_bind.o: ../../h/mta.h
  261. ch_bind.o: ../../h/adr.h
  262. ch_bind.o: ../../h/list_bpt.h
  263. ch_bind.o: ../../h/aparse.h
  264. ch_bind.o: ../../h/ap.h
  265. ch_bind.o: ../../h/util.h
  266. ch_bind.o: ../../h/or.h
  267. ch_bind.o: ../../h/chan.h
  268. ch_bind.o: ../../h/auth.h
  269. ch_bind.o: ../../h/list_rchan.h
  270. ch_bind.o: ../../h/mta.h
  271. ch_bind.o: ../../h/ch_bind.h
  272. gen_io2dr.o: gen_io2dr.c
  273. gen_io2dr.o: ../../h/head.h
  274. gen_io2dr.o: ../../h/util.h
  275. gen_io2dr.o: ../../h/config.h
  276. gen_io2dr.o: ../../h/ll_log.h
  277. gen_io2dr.o: ../../h/retcode.h
  278. gen_io2dr.o: ../../h/q.h
  279. gen_io2dr.o: ../../h/adr.h
  280. gen_io2dr.o: ../../h/list_rchan.h
  281. gen_io2dr.o: ../../h/chan.h
  282. gen_io2dr.o: ../../h/table.h
  283. gen_io2dr.o: ../../h/list_bpt.h
  284. gen_io2dr.o: ../../h/auth.h
  285. gen_io2dr.o: ../../h/list_bpt.h
  286. gen_io2dr.o: ../../h/extension.h
  287. gen_io2dr.o: ../../h/mta.h
  288. gen_io2dr.o: ../../h/adr.h
  289. gen_io2dr.o: ../../h/list_bpt.h
  290. gen_io2dr.o: ../../h/aparse.h
  291. gen_io2dr.o: ../../h/ap.h
  292. gen_io2dr.o: ../../h/util.h
  293. gen_io2dr.o: ../../h/or.h
  294. gen_io2dr.o: ../../h/chan.h
  295. gen_io2dr.o: ../../h/auth.h
  296. gen_io2dr.o: ../../h/list_rchan.h
  297. gen_io2dr.o: ../../h/mta.h
  298. gen_io2dr.o: ../../h/dr.h
  299. gen_io2dr.o: ../../h/extension.h
  300. gen_io2dr.o: ../../h/mta.h
  301. gen_ndr.o: gen_ndr.c
  302. gen_ndr.o: ../../h/head.h
  303. gen_ndr.o: ../../h/util.h
  304. gen_ndr.o: ../../h/config.h
  305. gen_ndr.o: ../../h/ll_log.h
  306. gen_ndr.o: ../../h/retcode.h
  307. gen_ndr.o: ../../h/q.h
  308. gen_ndr.o: ../../h/adr.h
  309. gen_ndr.o: ../../h/list_rchan.h
  310. gen_ndr.o: ../../h/chan.h
  311. gen_ndr.o: ../../h/table.h
  312. gen_ndr.o: ../../h/list_bpt.h
  313. gen_ndr.o: ../../h/auth.h
  314. gen_ndr.o: ../../h/list_bpt.h
  315. gen_ndr.o: ../../h/extension.h
  316. gen_ndr.o: ../../h/mta.h
  317. gen_ndr.o: ../../h/adr.h
  318. gen_ndr.o: ../../h/list_bpt.h
  319. gen_ndr.o: ../../h/aparse.h
  320. gen_ndr.o: ../../h/ap.h
  321. gen_ndr.o: ../../h/util.h
  322. gen_ndr.o: ../../h/or.h
  323. gen_ndr.o: ../../h/chan.h
  324. gen_ndr.o: ../../h/auth.h
  325. gen_ndr.o: ../../h/list_rchan.h
  326. gen_ndr.o: ../../h/mta.h
  327. gen_ndr.o: ../../h/dr.h
  328. gen_ndr.o: ../../h/extension.h
  329. gen_ndr.o: ../../h/mta.h
  330. gen_probedr.o: gen_probedr.c
  331. gen_probedr.o: ../../h/head.h
  332. gen_probedr.o: ../../h/util.h
  333. gen_probedr.o: ../../h/config.h
  334. gen_probedr.o: ../../h/ll_log.h
  335. gen_probedr.o: ../../h/retcode.h
  336. gen_probedr.o: ../../h/q.h
  337. gen_probedr.o: ../../h/adr.h
  338. gen_probedr.o: ../../h/list_rchan.h
  339. gen_probedr.o: ../../h/chan.h
  340. gen_probedr.o: ../../h/table.h
  341. gen_probedr.o: ../../h/list_bpt.h
  342. gen_probedr.o: ../../h/auth.h
  343. gen_probedr.o: ../../h/list_bpt.h
  344. gen_probedr.o: ../../h/extension.h
  345. gen_probedr.o: ../../h/mta.h
  346. gen_probedr.o: ../../h/adr.h
  347. gen_probedr.o: ../../h/list_bpt.h
  348. gen_probedr.o: ../../h/aparse.h
  349. gen_probedr.o: ../../h/ap.h
  350. gen_probedr.o: ../../h/util.h
  351. gen_probedr.o: ../../h/or.h
  352. gen_probedr.o: ../../h/chan.h
  353. gen_probedr.o: ../../h/auth.h
  354. gen_probedr.o: ../../h/list_rchan.h
  355. gen_probedr.o: ../../h/mta.h
  356. gen_probedr.o: ../../h/dr.h
  357. gen_probedr.o: ../../h/extension.h
  358. gen_probedr.o: ../../h/mta.h
  359. gen_warn.o: gen_warn.c
  360. gen_warn.o: ../../h/util.h
  361. gen_warn.o: ../../h/config.h
  362. gen_warn.o: ../../h/ll_log.h
  363. gen_warn.o: ../../h/q.h
  364. gen_warn.o: ../../h/adr.h
  365. gen_warn.o: ../../h/list_rchan.h
  366. gen_warn.o: ../../h/chan.h
  367. gen_warn.o: ../../h/table.h
  368. gen_warn.o: ../../h/list_bpt.h
  369. gen_warn.o: ../../h/auth.h
  370. gen_warn.o: ../../h/list_bpt.h
  371. gen_warn.o: ../../h/extension.h
  372. gen_warn.o: ../../h/mta.h
  373. gen_warn.o: ../../h/adr.h
  374. gen_warn.o: ../../h/list_bpt.h
  375. gen_warn.o: ../../h/aparse.h
  376. gen_warn.o: ../../h/ap.h
  377. gen_warn.o: ../../h/util.h
  378. gen_warn.o: ../../h/or.h
  379. gen_warn.o: ../../h/chan.h
  380. gen_warn.o: ../../h/auth.h
  381. gen_warn.o: ../../h/list_rchan.h
  382. gen_warn.o: ../../h/mta.h
  383. gen_warn.o: ../../h/auth.h
  384. gen_warn.o: ../../h/prm.h
  385. gen_warn.o: ../../h/retcode.h
  386. rd_rfchdr.o: rd_rfchdr.c
  387. rd_rfchdr.o: ../../h/head.h
  388. rd_rfchdr.o: ../../h/util.h
  389. rd_rfchdr.o: ../../h/config.h
  390. rd_rfchdr.o: ../../h/ll_log.h
  391. rd_rfchdr.o: ../../h/retcode.h
  392. rd_rfchdr.o: ../../h/q.h
  393. rd_rfchdr.o: ../../h/adr.h
  394. rd_rfchdr.o: ../../h/list_rchan.h
  395. rd_rfchdr.o: ../../h/chan.h
  396. rd_rfchdr.o: ../../h/table.h
  397. rd_rfchdr.o: ../../h/list_bpt.h
  398. rd_rfchdr.o: ../../h/auth.h
  399. rd_rfchdr.o: ../../h/list_bpt.h
  400. rd_rfchdr.o: ../../h/extension.h
  401. rd_rfchdr.o: ../../h/mta.h
  402. rd_rfchdr.o: ../../h/adr.h
  403. rd_rfchdr.o: ../../h/list_bpt.h
  404. rd_rfchdr.o: ../../h/aparse.h
  405. rd_rfchdr.o: ../../h/ap.h
  406. rd_rfchdr.o: ../../h/util.h
  407. rd_rfchdr.o: ../../h/or.h
  408. rd_rfchdr.o: ../../h/chan.h
  409. rd_rfchdr.o: ../../h/auth.h
  410. rd_rfchdr.o: ../../h/list_rchan.h
  411. rd_rfchdr.o: ../../h/mta.h
  412. rd_rfchdr.o: ../../h/tb_q.h
  413. rd_rfchdr.o: ../../h/or.h
  414. rd_rfchdr.o: ../../h/ap.h
  415. submit.o: submit.c
  416. submit.o: ../../h/head.h
  417. submit.o: ../../h/util.h
  418. submit.o: ../../h/config.h
  419. submit.o: ../../h/ll_log.h
  420. submit.o: ../../h/retcode.h
  421. submit.o: ../../h/prm.h
  422. submit.o: ../../h/q.h
  423. submit.o: ../../h/adr.h
  424. submit.o: ../../h/list_rchan.h
  425. submit.o: ../../h/chan.h
  426. submit.o: ../../h/table.h
  427. submit.o: ../../h/list_bpt.h
  428. submit.o: ../../h/auth.h
  429. submit.o: ../../h/list_bpt.h
  430. submit.o: ../../h/extension.h
  431. submit.o: ../../h/mta.h
  432. submit.o: ../../h/adr.h
  433. submit.o: ../../h/list_bpt.h
  434. submit.o: ../../h/aparse.h
  435. submit.o: ../../h/ap.h
  436. submit.o: ../../h/util.h
  437. submit.o: ../../h/or.h
  438. submit.o: ../../h/chan.h
  439. submit.o: ../../h/auth.h
  440. submit.o: ../../h/list_rchan.h
  441. submit.o: ../../h/mta.h
  442. submit.o: ../../h/or.h
  443. submit_chk.o: submit_chk.c
  444. submit_chk.o: ../../h/head.h
  445. submit_chk.o: ../../h/util.h
  446. submit_chk.o: ../../h/config.h
  447. submit_chk.o: ../../h/ll_log.h
  448. submit_chk.o: ../../h/retcode.h
  449. submit_chk.o: ../../h/q.h
  450. submit_chk.o: ../../h/adr.h
  451. submit_chk.o: ../../h/list_rchan.h
  452. submit_chk.o: ../../h/chan.h
  453. submit_chk.o: ../../h/table.h
  454. submit_chk.o: ../../h/list_bpt.h
  455. submit_chk.o: ../../h/auth.h
  456. submit_chk.o: ../../h/list_bpt.h
  457. submit_chk.o: ../../h/extension.h
  458. submit_chk.o: ../../h/mta.h
  459. submit_chk.o: ../../h/adr.h
  460. submit_chk.o: ../../h/list_bpt.h
  461. submit_chk.o: ../../h/aparse.h
  462. submit_chk.o: ../../h/ap.h
  463. submit_chk.o: ../../h/util.h
  464. submit_chk.o: ../../h/or.h
  465. submit_chk.o: ../../h/chan.h
  466. submit_chk.o: ../../h/auth.h
  467. submit_chk.o: ../../h/list_rchan.h
  468. submit_chk.o: ../../h/mta.h
  469. submit_chk.o: ../../h/dr.h
  470. submit_chk.o: ../../h/extension.h
  471. submit_chk.o: ../../h/mta.h
  472. submit_mgt.o: submit_mgt.c
  473. submit_mgt.o: ../../h/head.h
  474. submit_mgt.o: ../../h/util.h
  475. submit_mgt.o: ../../h/config.h
  476. submit_mgt.o: ../../h/ll_log.h
  477. submit_mgt.o: ../../h/retcode.h
  478. submit_mgt.o: ../../h/prm.h
  479. submit_mgt.o: ../../h/q.h
  480. submit_mgt.o: ../../h/adr.h
  481. submit_mgt.o: ../../h/list_rchan.h
  482. submit_mgt.o: ../../h/chan.h
  483. submit_mgt.o: ../../h/table.h
  484. submit_mgt.o: ../../h/list_bpt.h
  485. submit_mgt.o: ../../h/auth.h
  486. submit_mgt.o: ../../h/list_bpt.h
  487. submit_mgt.o: ../../h/extension.h
  488. submit_mgt.o: ../../h/mta.h
  489. submit_mgt.o: ../../h/adr.h
  490. submit_mgt.o: ../../h/list_bpt.h
  491. submit_mgt.o: ../../h/aparse.h
  492. submit_mgt.o: ../../h/ap.h
  493. submit_mgt.o: ../../h/util.h
  494. submit_mgt.o: ../../h/or.h
  495. submit_mgt.o: ../../h/chan.h
  496. submit_mgt.o: ../../h/auth.h
  497. submit_mgt.o: ../../h/list_rchan.h
  498. submit_mgt.o: ../../h/mta.h
  499. submit_mgt.o: ../../h/dr.h
  500. submit_mgt.o: ../../h/extension.h
  501. submit_mgt.o: ../../h/mta.h
  502. submit_mgt.o: ../../h/ap.h
  503. submit_prm.o: submit_prm.c
  504. submit_prm.o: ../../h/head.h
  505. submit_prm.o: ../../h/util.h
  506. submit_prm.o: ../../h/config.h
  507. submit_prm.o: ../../h/ll_log.h
  508. submit_prm.o: ../../h/retcode.h
  509. submit_prm.o: ../../h/prm.h
  510. submit_prm.o: ../../h/q.h
  511. submit_prm.o: ../../h/adr.h
  512. submit_prm.o: ../../h/list_rchan.h
  513. submit_prm.o: ../../h/chan.h
  514. submit_prm.o: ../../h/table.h
  515. submit_prm.o: ../../h/list_bpt.h
  516. submit_prm.o: ../../h/auth.h
  517. submit_prm.o: ../../h/list_bpt.h
  518. submit_prm.o: ../../h/extension.h
  519. submit_prm.o: ../../h/mta.h
  520. submit_prm.o: ../../h/adr.h
  521. submit_prm.o: ../../h/list_bpt.h
  522. submit_prm.o: ../../h/aparse.h
  523. submit_prm.o: ../../h/ap.h
  524. submit_prm.o: ../../h/util.h
  525. submit_prm.o: ../../h/or.h
  526. submit_prm.o: ../../h/chan.h
  527. submit_prm.o: ../../h/auth.h
  528. submit_prm.o: ../../h/list_rchan.h
  529. submit_prm.o: ../../h/mta.h
  530. submit_que.o: submit_que.c
  531. submit_que.o: ../../h/head.h
  532. submit_que.o: ../../h/util.h
  533. submit_que.o: ../../h/config.h
  534. submit_que.o: ../../h/ll_log.h
  535. submit_que.o: ../../h/retcode.h
  536. submit_que.o: ../../h/prm.h
  537. submit_que.o: ../../h/q.h
  538. submit_que.o: ../../h/adr.h
  539. submit_que.o: ../../h/list_rchan.h
  540. submit_que.o: ../../h/chan.h
  541. submit_que.o: ../../h/table.h
  542. submit_que.o: ../../h/list_bpt.h
  543. submit_que.o: ../../h/auth.h
  544. submit_que.o: ../../h/list_bpt.h
  545. submit_que.o: ../../h/extension.h
  546. submit_que.o: ../../h/mta.h
  547. submit_que.o: ../../h/adr.h
  548. submit_que.o: ../../h/list_bpt.h
  549. submit_que.o: ../../h/aparse.h
  550. submit_que.o: ../../h/ap.h
  551. submit_que.o: ../../h/util.h
  552. submit_que.o: ../../h/or.h
  553. submit_que.o: ../../h/chan.h
  554. submit_que.o: ../../h/auth.h
  555. submit_que.o: ../../h/list_rchan.h
  556. submit_que.o: ../../h/mta.h
  557. submit_que.o: ../../h/adr.h
  558. submit_txt.o: submit_txt.c
  559. submit_txt.o: ../../h/head.h
  560. submit_txt.o: ../../h/util.h
  561. submit_txt.o: ../../h/config.h
  562. submit_txt.o: ../../h/ll_log.h
  563. submit_txt.o: ../../h/retcode.h
  564. submit_txt.o: ../../h/list_bpt.h
  565. submit_txt.o: ../../h/q.h
  566. submit_txt.o: ../../h/adr.h
  567. submit_txt.o: ../../h/list_rchan.h
  568. submit_txt.o: ../../h/chan.h
  569. submit_txt.o: ../../h/table.h
  570. submit_txt.o: ../../h/list_bpt.h
  571. submit_txt.o: ../../h/auth.h
  572. submit_txt.o: ../../h/list_bpt.h
  573. submit_txt.o: ../../h/extension.h
  574. submit_txt.o: ../../h/mta.h
  575. submit_txt.o: ../../h/adr.h
  576. submit_txt.o: ../../h/list_bpt.h
  577. submit_txt.o: ../../h/aparse.h
  578. submit_txt.o: ../../h/ap.h
  579. submit_txt.o: ../../h/util.h
  580. submit_txt.o: ../../h/or.h
  581. submit_txt.o: ../../h/chan.h
  582. submit_txt.o: ../../h/auth.h
  583. submit_txt.o: ../../h/list_rchan.h
  584. submit_txt.o: ../../h/mta.h
  585. submit_txt.o: ../../h/chan.h
  586.  
  587. # DEPENDENCIES MUST END AT END OF FILE
  588. # IF YOU PUT STUFF HERE IT WILL GO AWAY
  589. # see make depend above
  590.