home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / Linux / Apps / xanim.tgz / xanim / xanim27064 / Makefile.unx < prev    next >
Makefile  |  1997-01-26  |  19KB  |  549 lines

  1. .SUFFIXES: .c .o
  2.  
  3. ############################################################################
  4. #
  5. #              Makefile for XAnim Rev 2.70.6.4
  6. #
  7. #
  8. ############################################################################
  9. # Readme Readme Readme Readme Readme Readme Readme Readme Readme Readme
  10. ############################################################################
  11. #
  12. # I've tried to organized and partition this Makefile so it's easier
  13. # to configure. Feedback is appreciated.
  14. #
  15. # First and foremost, please read the following files:
  16. #   
  17. #        "cinepak.readme"
  18. #        "indeo.readme"
  19. #        "creative.readme" 
  20. #   
  21. # Then goto each Section and configure, comment, uncomment the Defines
  22. # as necessary.  Some parts might have you search for a NOTE_* later
  23. # on in the Makefile and do something special there.
  24. #
  25. # Index of Sections
  26. # ---------------    -----------------------------------------------
  27. # -- Section I     - Name of Output File.
  28. # -- Section II    - Compiler and Optimization Flags.
  29. # -- Section III   - Video Defines/Libs
  30. # -- Section IV.a  - X11/OpenWindow Libs and Includes Directories.
  31. # -- Section IV.b  - X11R6 specific libraries.
  32. # -- Section V     - no longer used
  33. # -- Section VI    - Audio Defines and Libraries.
  34. # -- Section VII   - Machine Specific Defines and Libs(and Misc stuff)
  35. # ----------------   -----------------------------------------------
  36. #
  37. # Good luck,
  38. #
  39. # Mark Podlipec - podlipec@baynetworks.com
  40. #               - podlipec@ici.net
  41. #
  42. ############
  43.  
  44. ############################################################################
  45. # -- Section I
  46. # -- Output File (The name of the final executable)
  47. ############################################################################
  48. #
  49. XANIM = xanim
  50. #
  51. ############
  52.  
  53. ############################################################################
  54. # -- Section II
  55. # -- Choose your favorite compiler and optimization flags.
  56. #
  57. # NOTE: will eventually put in suggestions for specific machines.
  58. ############################################################################
  59. # -- standard C Compiler
  60. CC = cc
  61. OPTIMIZE= -O
  62. # OPTIMIZE= -O2
  63. # OPTIMIZE= -O3
  64. #
  65. # -- GNU C Compiler
  66. # CC = gcc 
  67. # OPTIMIZE= -O
  68. # OPTIMIZE= -O2
  69. # -- Debug Flags DON'T Use with Optimization flags.
  70. # DEBUG = -g
  71. #
  72. #
  73. #
  74. ######## Section II.a   Machine Specific Optimization Flags
  75. # -- SGI Indigo with MIPS R4xxx Processor
  76. # OPTIMIZE= -O2 -cckr -Wf,-XNh2000 -mips2
  77. #
  78. ############
  79.  
  80. ############################################################################
  81. # -- Section III
  82. # -- Video Support Defines.  These are okay to leave blank if you don't know
  83. # -- what to do, BUT in that case you should really read the following files:
  84. # --
  85. # --     "cinepak.readme"
  86. # --     "indeo.readme"
  87. # --     "creative.readme" 
  88. # --
  89. # -- Latest files are available from the following sites:
  90. # --
  91. # --    http://xanim.va.pubnix.com/home.html
  92. # --    http://smurfland.cit.buffalo.edu/xanim/home.html
  93. # --    http://www.tm.informatik.uni-frankfurt.de/xanim/
  94. # --
  95. ############################################################################
  96. #
  97. # -- Modify the following ONLY after you have read the appropriate readmes
  98. # -- AND have downloaded the proper decompression modules AND have verified
  99. # -- that they are the correct size in bytes as listed in the readmes.
  100. # --
  101. # --    Cinepak        CVID    cinepak.readme
  102. # --    Indeo 3.x    IV32    indeo.readme
  103. # --    Creative       CYUV    creative.readme
  104. # XA_IV32_DEF = -DXA_INDEO 
  105. # XA_CVID_DEF = -DXA_CINEPAK
  106. # XA_CYUV_DEF = -DXA_CYUV
  107. #
  108. XA_IV32_LIB =
  109. XA_CVID_LIB =
  110. XA_CYUV_LIB =
  111. #
  112. # NOTE: SGI Machines only: if you see an error like
  113. #               "merge_ext returns nil during relocation" or similiar
  114. # You'll need to uncomment the following define as a workaround.
  115. # XA_SGI1 = -old_ld -32
  116. #
  117. #### No need to modify these 
  118. XA_VIDEO_DEFS = $(XA_IV32_DEF) $(XA_CVID_DEF) $(XA_CYUV_DEF)
  119. XA_VIDEO_LIBS = $(XA_IV32_LIB) $(XA_CVID_LIB) $(XA_CYUV_LIB) $(XA_SGI1)
  120. XA_VIDEO_DEPS = $(XA_IV32_LIB) $(XA_CVID_LIB) $(XA_CYUV_LIB)
  121. #
  122. ############
  123.  
  124. ############################################################################
  125. # -- Section IV.a
  126. # -- X11/Openwindow Specific Defines
  127. # NOTE: The location of the X11 libs and includes are extremely variable, 
  128. #       even across the same type of machines. Quite literally, they can
  129. #       be put almost anywhere. Very annoying. What every happened to
  130. #       /usr/lib/X11 and /usr/include/X11? Yeah, I know...
  131. ############################################################################
  132. # -- Sun Sparcs running OpenWindows -----------------------------------------
  133. # INCLUDE = -I/usr/openwin/include -I/usr/openwin/include/X11
  134. # XLIBDIR = -L/usr/openwin/lib
  135. # -- Any Machine(include Sun Sparcs) Running X11 ----------------------------
  136. # --
  137. # -- X11 Includes directory
  138. # --      You need to find out what directory the X11 includes are located
  139. # --      in on your  machine and then include that directory AND the 
  140. # --      directory above it in the INCLUDE define(prefixed by -I).
  141. # --      You can look for the file "Xlib.h"
  142. # --      Here's some typical directories:
  143. # --              /usr/include/X11
  144. # --              /usr/include/X11R5
  145. # --              /usr/X11R5/include/X11
  146. # --              /usr/local/X11R5/include/X11
  147. # --              /X11R5/include/X11
  148. # --              /sapphire/tmp/test/X11R6/include/X11
  149. #
  150. INCLUDE =  -I/usr/include -I/usr/include/X11
  151. #
  152. # -- X11 Library directory
  153. # --      You need to find out what directory the X11 libraries are located
  154. # --      in on your  machine and then include that directory in the
  155. # --      XLIBDIR define(prefixed by -L).  
  156. # --      You can look for the files "libX11.*" (ie libX11.a, libX11.so, etc)
  157. # --      Here's some typical directories:
  158. # --              /usr/lib/X11
  159. # --              /usr/lib/X115
  160. # --              /usr/X115/lib/X11
  161. # --              /usr/local/X115/lib/X11
  162. # --              /X115/lib/X11
  163. #
  164. XLIBDIR = -L/usr/lib/X11 
  165. #
  166. ############
  167.  
  168. ############################################################################
  169. # -- Section IV.b
  170. # -- If you are running X11R6, then you might also need these libraries.
  171. ############################################################################
  172. # XA_X11R6_LIBS = -lSM -lICE
  173. #
  174. ############
  175.  
  176. ############################################################################
  177. # -- Section VI
  178. # -- Audio Defines
  179. #
  180. # NOTE: If your machine doesn't have audio OR isn't supported yet then
  181. #       comment out ALL of the XA_AUDIO_* defines and you can still compile
  182. #       XAnim for just video.  Setting the XA_AUDIO_* to nothing has the
  183. #       same affect.
  184. #
  185. # NOTE: Some machines will have to add -DXA_SELECT to the XA_AUDIO_DEFS.
  186. #       let me know if you find this to be the case.
  187. ############################################################################
  188. #
  189. # -- You don't have OR don't want Audio support -------------------------------
  190. # XA_AUDIO_DEFS =
  191. #
  192. # -- Sun Sparcs running SunOS 4.1.x -------------------------------------------
  193. XA_AUDIO_DEFS = -DXA_SPARC_AUDIO
  194. # -- Sun Sparcs running Solaris/SunOS 5.x -------------------------------------
  195. # XA_AUDIO_DEFS = -DXA_SPARC_AUDIO -DSVR4
  196. #
  197. # -- Sun Sparcs running Solaris/SunOS 5.4 -------------------------------------
  198. # XA_AUDIO_DEFS = -DXA_SPARC_AUDIO -DSVR4 -DXA_SELECT
  199. #
  200. # -- S/6000 - AIX 4.1 (3.2.5??) -----------------------------------------------
  201. # XA_AUDIO_DEFS = -DXA_AIX_AUDIO -DXA_SELECT
  202. #
  203. # -- DEC Multimedia Services Support ------------------------------------------
  204. # XA_AUDIO_DEFS = -DXA_MMS_AUDIO
  205. # XA_AUDIO_LIBS = -lmme
  206. #
  207. # -- DEC Multimedia Services Support With Volume Control-----------------------
  208. # XA_AUDIO_DEFS = -DXA_MMS_AUDIO -DMMS_VOL
  209. # XA_AUDIO_LIBS = -lmme
  210. #
  211. # -- DEC Multimedia Services Support --------------------------------------
  212. # --   This might be necessary for Digital Unix 3.2C and MME 1.60 DK
  213. # XA_AUDIO_DEFS = -DXA_MMS_AUDIO -DXA_MMS_160 -DDEC
  214. # XA_AUDIO_LIBS = -lmme
  215. #
  216. # -- NEC EWS Workstations -----------------------------------------------------
  217. # XA_AUDIO_DEFS = -DXA_EWS_AUDIO
  218. #
  219. # -- SONY Workstations NEWS-5000 NEWS-OS 4.2 ----------------------------------
  220. # XA_AUDIO_DEFS = -DXA_SONY_AUDIO
  221. #
  222. # -- NetBSD-current (as of 30/April 1995)--------------------------------------
  223. # XA_AUDIO_DEFS = -DXA_NetBSD_AUDIO
  224. #
  225. # -- QNX 4.2 PC's -------------------------------------------------------------
  226. # XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND -DXA_SELECT
  227. # XA_AUDIO_LIBS = -lc
  228. #
  229. # -- Linux PC's with OLD Rev sound drivers ------------------------------------
  230. # XA_AUDIO_DEFS = -DXA_LINUX_AUDIO
  231. # XA_AUDIO_LIBS = -lc
  232. #
  233. # -- Linux PC's with NEWER Rev sound drivers(Rev 2.5 and up) ------------------
  234. # XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND
  235. # XA_AUDIO_LIBS = -lc
  236. # -- Also FreeBSD, and BSDI with SBlast-BSD-1.5 (development stages)-----------
  237. # XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND
  238. # XA_AUDIO_LIBS = -lc
  239. # -- SGI Indigo ---------------------------------------------------------------
  240. # XA_AUDIO_DEFS = -DXA_SGI_AUDIO -DSYSV -DSVR4
  241. # XA_AUDIO_LIBS = -laudio
  242. #
  243. # -- HP 9000/700 Direct access to Audio Device---------------------------------
  244. # -- This is a direct access to the HP's audio device and works much smoother
  245. # -- than going through the Aserver(which has some serious problems).
  246. # -- NOTE: You need to kill AServer before using this audio device since
  247. # --       AServer will otherwise prevent xanim from opening it.
  248. # XA_AUDIO_DEFS = -DXA_HPDEV_AUDIO 
  249. # XA_AUDIO_LIBS = 
  250. #
  251. # -- HP 9000/700 AServer audio layers -----------------------------------------
  252. # -- This isn't well developed yet(haven't had enough time on an HP yet).
  253. # -- Plus AServer is currently *NOT* adequate for syncing audio and video.
  254. # -- It adds too much of a delay in the processing of audio and so
  255. # -- I don't recommend using it. But if you insist, consider yourself 
  256. # -- forewarned.
  257. # --
  258. # -- HP/UX 9.x AServer
  259. # XA_AUDIO_DEFS = -DXA_HP_AUDIO
  260. # XA_AUDIO_LIBS = -lAlib
  261. # --
  262. # -- HP/UX 10.x AServer
  263. # XA_AUDIO_DEFS = -DXA_HP_AUDIO -DXA_HP10
  264. # XA_AUDIO_LIBS = -L/opt/audio/lib -lAlib
  265. # XA_AUDIO_INCS = -I/opt/audio/include
  266. #
  267. # ------ AF (AudioFile) Support -----------------------------------------------
  268. # -- You need to indicate where the AF libraries libAFUtil.a and libAF.a
  269. # -- are located. Typically this is /usr/local/lib, but not always. Talk
  270. # -- to the person who installed them on your machine to find out where
  271. # -- they were put.  Same with the AF/include directory.
  272. #
  273. # -- NOTE: SOME VENDORS have an a library called AudioFile, AFile or AF
  274. # -- that has to do with audio file formats and is NOT the same thing as
  275. # -- AudioFile above. Again, talk to the person who installed AudioFile
  276. # -- on your system. Otherwise, assume you don't have it.
  277. #
  278. # XA_AUDIO_DEFS = -DXA_AF_AUDIO
  279. # XA_AUDIO_LIBS = -L/usr/local/lib -lAFUtil -lAF
  280. # XA_AUDIO_INCS = -I/usr/local/include
  281. #
  282. # ------ NAS (Network Audio System) Support -----------------------------------
  283. # -- You need to indicate where the NAS library libaudio.a is located.
  284. # -- Typically this is /usr/local/lib, but not always.  Talk to the
  285. # -- person who installed them on your machine to find out where they
  286. # -- were put. Otherwise, assume you don't have NAS installed.
  287. # -- Same with the /usr/local/include/audio directory.
  288. #
  289. # XA_AUDIO_DEFS = -DXA_NAS_AUDIO
  290. # XA_AUDIO_LIBS = -L/usr/local/lib/audio -laudio
  291. # XA_AUDIO_INCS = -I/usr/local/include/audio
  292. #
  293. # NOTE: /pain/audio is just where I keep all my audio stuff and is
  294. # just here for my convenience. (pain because the disk died once already :)
  295. # XA_AUDIO_DEFS = -DXA_NAS_AUDIO
  296. # XA_AUDIO_LIBS = -L/pain/audio/nas/lib/audio -laudio
  297. # XA_AUDIO_INCS = -I/pain/audio/nas/usr/include
  298. #
  299. ############
  300.  
  301. ############################################################################
  302. # -- Section VII
  303. # Machine Specific Defines and Libs
  304. ############################################################################
  305. #
  306. # -- Sun Sparc running SunOS 4.x and OpenWindows ------------------------------
  307. # See  NOTE_5  below(alternative XLIBS define).
  308. #
  309. # -- Some Revs of Sun Solaris Machines need the following ---------------------
  310. # XA_MACH_LIBS = -lsocket -lnsl -lgen
  311. #
  312. # -- Unisys SVR4 machines based on Intel arch.
  313. # See NOTE_7 below(alternative XLIBS define)
  314. #
  315. # -- HP machines --------------------------------------------------------------
  316. # -- NEED this to increase the macro symbol table(default is 128000).
  317. # XA_MACH_DEFS = -Wp,-H150000
  318. #
  319. # -- PC DOS Machines running Quarterdeck's DESQview X--------------------------
  320. # XA_MACH_DEFS  = -DMSDOS
  321. #
  322. # -- i486 box Interactive UNIX V2.2.1 -----------------------------------------
  323. # -- might need to uncomment out the define below:
  324. # XA_MACH_LIBS = -linet
  325. #
  326. # -- IBM AIX ------------------------------------------------------------------
  327. # These machines don't have the X11 Shared memory extension.
  328. # See  NOTE_6 below(comment out the XA_SHARED define).
  329. #
  330. #
  331. # ---- Misc Defines for various machines -----------------------------------
  332. #
  333. #   -- NO_INSTALL_CMAP prevents XAnim from specifically installing a cmap.
  334. #   --  this causes problems on some PC versions of X11
  335. # XA_CMAP = -DNO_INSTALL_CMAP
  336. #   -- XA_XTPOINTER typedefs XtPointer as void*  if your system doesn't
  337. #   -- typedef it already. (X11R4 or below might need this)
  338. # XA_XTPTR = -DXA_XTPOINTER
  339. #  
  340. #   -- X11 Shared Memory
  341. #   -- Allow use of shared memory if specified on cmd line. Comment this out
  342. #   -- if get compiler errors about not finding XShm.h or the following
  343. #   -- symbols(XShmCreateImage,XShmAttach,XShmDetach,XShmPutImage,etc).
  344. #   -- NOTE_6: IBM AIX machines need to comment this out UNLESS YOU HAVE
  345. #   --         SPECIFICALLY installed the Xshm extension on your AIX machine.
  346. XA_SHARED = -DXSHM
  347. #
  348. #   -- X11 Multiple Buffers  (may or may not help with large images)
  349. #   -- Allow use of hardware/software double buffering in the server, if
  350. #   -- specified on cmd line. Comment this out if you get compiler errors
  351. #   -- about not finding multibuf.h or the
  352. #   -- following symbols(XmbufDisplayBuffers, XmbufQueryExtension,
  353. #   --  XmbufCreateBuffers).
  354. #   -- NOTE_8: HP-UX machines need to comment this out.
  355. # XA_MULTIBUF = -DXMBUF
  356. #
  357. ############
  358. #
  359. ############################################################################
  360. # END OF SECTIONS - No need to look below unless a NOTE told you to.
  361. ############################################################################
  362. #
  363. XA_MISC_DEFS = $(XA_CMAP) $(XA_XTPTR) $(XA_SHARED) $(XA_MULTIBUF) $(XA_MACH_DEFS)
  364. #
  365. #####################################
  366. #  FINAL CFLAGS and OTHER_LIBS
  367. #
  368.  
  369. XA_DEFS = $(XA_MISC_DEFS) $(XA_VIDEO_DEFS) $(XA_AUDIO_DEFS) -DXA_PETUNIA -DXA_KPCD
  370. XA_LIBS = $(XA_X11R6_LIBS) $(XA_MACH_LIBS) $(XA_VIDEO_LIBS) $(XA_AUDIO_LIBS) 
  371. XA_INCS = $(INCLUDE) $(XA_VIDEO_INCS) $(XA_AUDIO_INCS)
  372. CFLAGS    =  $(DEBUG) $(OPTIMIZE)
  373.  
  374. #####################################
  375. # FINAL LIBS
  376. #
  377. XLIBS    = $(XA_LIBS) -lXext -lXt -lX11 -lm -lc
  378. #
  379. # NOTE_5: If you are using OpenWindows with SunOS4.1.3 then use the following:
  380. #XLIBS  = $(XA_LIBS) -lXext -lXt -lX11 -lm -lXext
  381. #
  382. # NOTE_7: If you are using Unisys SVR4 then use the following:
  383. #XLIBS = $(XA_LIBS) -lXext -lXt -lX11 -lm -lc -lnsl  -lsocket -lgen -L/usr/ucblib -lucb
  384.  
  385.  
  386. # xa_pfx.c TEMP REMOVED
  387. CFILES = xanim.c xa_show.c xa_x11.c xa_fli.c xa_iff.c  \
  388.     xa_gif.c xa_txt.c unpacker.c xa_utils.c xa_act.c \
  389.     xa_set.c xa_cmap.c xa_rle.c xa_wav.c xa_au.c \
  390.     xa_avi.c xa_qt.c xa_qt_decs.c xa_audio.c xa_ipc.c xa_color.c \
  391.     xa_jpg.c xa_mpg.c xa_dl.c xa_jmov.c xa_movi.c \
  392.     xa_replay.c xa_dumfx.c xa_acodec.c xa_input.c xa_formats.c \
  393.     xa1.0_kpcd.c
  394.  
  395.  
  396. OFILES = xanim.o xa_show.o xa_x11.o xa_fli.o xa_iff.o  \
  397.     xa_gif.o xa_txt.o unpacker.o xa_utils.o xa_act.o \
  398.     xa_set.o xa_cmap.o xa_rle.o xa_wav.o xa_au.o \
  399.     xa_avi.o xa_qt.o xa_qt_decs.o xa_audio.o xa_ipc.o xa_color.o \
  400.     xa_jpg.o xa_mpg.o xa_dl.o xa_jmov.o xa_movi.o \
  401.     xa_replay.o xa_dumfx.o xa_acodec.o xa_input.o xa_formats.o \
  402.     xa1.0_kpcd.o
  403.  
  404. xanim: $(OFILES) $(XA_VIDEO_DEPS)
  405.     $(CC) $(CFLAGS) -o $(XANIM) $(OFILES) $(XLIBDIR) $(XLIBS)
  406.  
  407. .c.o:
  408.     $(CC) $(CFLAGS) $(XA_DEFS) $(XA_INCS) -c $*.c
  409.  
  410. clean:
  411.     rm -f $(OFILES) core
  412.  
  413. xaclean:
  414.     rm -f $(OFILES) core
  415.  
  416. txtmerge:    
  417.     $(CC) $(CFLAGS) -o txtmerge txtmerge.c
  418.  
  419.  
  420. # DO NOT DELETE THIS LINE
  421. xanim.o: Makefile
  422. xanim.o: xanim.h
  423. xanim.o: xa_config.h
  424. xanim.o: xa_x11.h
  425. xanim.o: xanim.c
  426. xa1.0_kpcd.o: xa1.0_kpcd.c
  427. unpacker.o: unpacker.c
  428. xa_acodec.o: Makefile
  429. xa_acodec.o: xanim.h
  430. xa_acodec.o: xa_acodec.c
  431. xa_act.o: xanim.h
  432. xa_act.o: xa_config.h
  433. xa_act.o: xa_act.c
  434. xa_au.o: xanim.h
  435. xa_au.o: xa_config.h
  436. xa_au.o: xa_au.c
  437. xa_audio.o: Makefile
  438. xa_audio.o: xanim.h
  439. xa_audio.o: xa_config.h
  440. xa_audio.o: xa_audio.h
  441. xa_audio.o: xa_audio.c
  442. xa_avi.o: Makefile
  443. xa_avi.o: xanim.h
  444. xa_avi.o: xa_config.h
  445. xa_avi.o: xa_avi.h
  446. xa_avi.o: xa_codecs.h
  447. xa_avi.o: xa_xmpg.h
  448. xa_avi.o: xa_avi.c
  449. xa_cmap.o: xanim.h
  450. xa_cmap.o: xa_config.h
  451. xa_cmap.o: xa_cmap.c
  452. xa_color.o: xanim.h
  453. xa_color.o: xa_color.c
  454. xa_dl.o: xanim.h
  455. xa_dl.o: xa_config.h
  456. xa_dl.o: xa_dl.h
  457. xa_dl.o: xa_dl.c
  458. xa_dumfx.o: xanim.h
  459. xa_dumfx.o: xa_dumfx.c
  460. xa_fli.o: xanim.h
  461. xa_fli.o: xa_config.h
  462. xa_fli.o: xa_fli.h
  463. xa_fli.o: xa_fli.c
  464. xa_formats.o: xanim.h
  465. xa_formats.o: xa_formats.c
  466. xa_gif.o: xanim.h
  467. xa_gif.o: xa_config.h
  468. xa_gif.o: xa_gif.h
  469. xa_gif.o: xa_gif.c
  470. xa_iff.o: xanim.h
  471. xa_iff.o: xa_config.h
  472. xa_iff.o: xa_iff.h
  473. xa_iff.o: xa_iff.c
  474. xa_input.o: xanim.h
  475. xa_input.o: xa_input.c
  476. xa_ipc.o: Makefile
  477. xa_ipc.o: xanim.h
  478. xa_ipc.o: xa_config.h
  479. xa_ipc.o: xa_ipc.h
  480. xa_ipc.o: xa_ipc.c
  481. xa_jmov.o: xanim.h
  482. xa_jmov.o: xa_config.h
  483. xa_jmov.o: xa_jmov.h
  484. xa_jmov.o: xa_jmov.c
  485. xa_jpg.o: xanim.h
  486. xa_jpg.o: xa_config.h
  487. xa_jpg.o: xa_jpg.h
  488. xa_jpg.o: xa_jpg.c
  489. xa_movi.o: xanim.h
  490. xa_movi.o: xa_config.h
  491. xa_movi.o: xa_movi.h
  492. xa_movi.o: xa_movi.c
  493. xa_mpg.o: xanim.h
  494. xa_mpg.o: xa_config.h
  495. xa_mpg.o: xa_mpg.h
  496. xa_mpg.o: xa_xmpg.h
  497. xa_mpg.o: xa_mpg.c
  498. xa_mpg.o: xa_jpg.c
  499. xa_qt.o: Makefile
  500. xa_qt.o: xanim.h
  501. xa_qt.o: xa_config.h
  502. xa_qt.o: xa_qt.h
  503. xa_qt.o: xa_codecs.h
  504. xa_qt.o: xa_qt.c
  505. xa_qt_decs.o: Makefile
  506. xa_qt_decs.o: xanim.h
  507. xa_qt_decs.o: xa_config.h
  508. xa_qt_decs.o: xa_qt.h
  509. xa_qt_decs.o: xa_qt_decs.c
  510. xa_replay.o: xanim.h
  511. xa_replay.o: xa_config.h
  512. xa_replay.o: xa_replay.h
  513. xa_replay.o: xa_replay.c
  514. xa_rle.o: xanim.h
  515. xa_rle.o: xa_config.h
  516. xa_rle.o: xa_rle.h
  517. xa_rle.o: xa_rle.c
  518. xa_set.o: xanim.h
  519. xa_set.o: xa_config.h
  520. xa_set.o: xa_iff.h
  521. xa_set.o: xa_iff.c
  522. xa_set.o: xa_set.h
  523. xa_set.o: xa_set.c
  524. xa_show.o: Makefile
  525. xa_show.o: xanim.h
  526. xa_show.o: xa_show.c
  527. xa_txt.o: xanim.h
  528. xa_txt.o: xa_config.h
  529. xa_txt.o: xa_txt.c
  530. xa_utils.o: xanim.h
  531. xa_utils.o: xa_config.h
  532. xa_utils.o: xa_utils.c
  533. xa_wav.o: xanim.h
  534. xa_wav.o: xa_config.h
  535. xa_wav.o: xa_avi.h
  536. xa_wav.o: xa_wav.c
  537. xa_x11.o: Makefile
  538. xa_x11.o: xanim.h
  539. xa_x11.o: xa_config.h
  540. xa_x11.o: xa_x11.h
  541. xa_x11.o: xa_x11.c
  542.