home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / abuse / src / net / unix / Makefile.linux < prev    next >
Encoding:
Makefile  |  1995-10-16  |  17.6 KB  |  456 lines

  1. all : debug
  2.  
  3. debug : undrvx undrv
  4.     echo Made debug
  5.  
  6. opt : undrvxo undrvo
  7.     echo Made opt
  8.  
  9. profile : undrvxp undrvp
  10.     echo Made profile
  11.  
  12. LINUX_X11_undrvx_debug_o_files = \
  13.     ./linux_x11/debug/undrv.o \
  14.     ./linux_x11/debug/tcpip.o \
  15.     ./linux_x11/debug/netdrv.o \
  16.     ./linux_x11/debug/gserver.o \
  17.     ./linux_x11/debug/gclient.o \
  18.     ./linux_x11/debug/fileman.o
  19.  
  20. LINUX_SVGA_undrv_debug_o_files = \
  21.     ./linux_svga/debug/undrv.o \
  22.     ./linux_svga/debug/tcpip.o \
  23.     ./linux_svga/debug/netdrv.o \
  24.     ./linux_svga/debug/gserver.o \
  25.     ./linux_svga/debug/gclient.o \
  26.     ./linux_svga/debug/fileman.o
  27.  
  28. undrv : $(LINUX_SVGA_undrv_debug_o_files)
  29.     g++ -o undrv \
  30.     ./linux_svga/debug/undrv.o \
  31.     ./linux_svga/debug/tcpip.o \
  32.     ./linux_svga/debug/netdrv.o \
  33.     ./linux_svga/debug/gserver.o \
  34.     ./linux_svga/debug/gclient.o \
  35.     ./linux_svga/debug/fileman.o -lvga -lm
  36.  
  37. ./linux_svga/debug/undrv.o : undrv.c
  38.     g++ -c -o ./linux_svga/debug/undrv.o undrv.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  39.  
  40. ./linux_svga/debug/undrv.o : tcpip.hpp
  41. ./linux_svga/debug/undrv.o : fileman.hpp
  42. ./linux_svga/debug/undrv.o : gclient.hpp
  43. ./linux_svga/debug/undrv.o : gserver.hpp
  44. ./linux_svga/debug/undrv.o : netdrv.hpp
  45. ./linux_svga/debug/undrv.o : ../inc/netface.hpp
  46. ./linux_svga/debug/undrv.o : ../inc/sock.hpp
  47. ./linux_svga/debug/undrv.o : undrv.hpp
  48. ./linux_svga/debug/undrv.o : ../inc/indian.hpp
  49. ./linux_svga/debug/tcpip.o : tcpip.c
  50.     g++ -c -o ./linux_svga/debug/tcpip.o tcpip.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  51.  
  52. ./linux_svga/debug/tcpip.o : ../inc/sock.hpp
  53. ./linux_svga/debug/tcpip.o : tcpip.hpp
  54. ./linux_svga/debug/netdrv.o : netdrv.c
  55.     g++ -c -o ./linux_svga/debug/netdrv.o netdrv.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  56.  
  57. ./linux_svga/debug/netdrv.o : tcpip.hpp
  58. ./linux_svga/debug/netdrv.o : gclient.hpp
  59. ./linux_svga/debug/netdrv.o : gserver.hpp
  60. ./linux_svga/debug/netdrv.o : undrv.hpp
  61. ./linux_svga/debug/netdrv.o : ../inc/indian.hpp
  62. ./linux_svga/debug/netdrv.o : ../inc/netface.hpp
  63. ./linux_svga/debug/netdrv.o : netdrv.hpp
  64. ./linux_svga/debug/netdrv.o : ../inc/sock.hpp
  65. ./linux_svga/debug/netdrv.o : fileman.hpp
  66. ./linux_svga/debug/gserver.o : gserver.c
  67.     g++ -c -o ./linux_svga/debug/gserver.o gserver.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  68.  
  69. ./linux_svga/debug/gserver.o : undrv.hpp
  70. ./linux_svga/debug/gserver.o : ../inc/indian.hpp
  71. ./linux_svga/debug/gserver.o : ../inc/netface.hpp
  72. ./linux_svga/debug/gserver.o : netdrv.hpp
  73. ./linux_svga/debug/gserver.o : ../inc/sock.hpp
  74. ./linux_svga/debug/gserver.o : gserver.hpp
  75. ./linux_svga/debug/gclient.o : gclient.c
  76.     g++ -c -o ./linux_svga/debug/gclient.o gclient.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  77.  
  78. ./linux_svga/debug/gclient.o : undrv.hpp
  79. ./linux_svga/debug/gclient.o : ../inc/indian.hpp
  80. ./linux_svga/debug/gclient.o : ../inc/netface.hpp
  81. ./linux_svga/debug/gclient.o : netdrv.hpp
  82. ./linux_svga/debug/gclient.o : ../inc/sock.hpp
  83. ./linux_svga/debug/gclient.o : gclient.hpp
  84. ./linux_svga/debug/fileman.o : fileman.c
  85.     g++ -c -o ./linux_svga/debug/fileman.o fileman.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  86.  
  87. ./linux_svga/debug/fileman.o : netdrv.hpp
  88. ./linux_svga/debug/fileman.o : undrv.hpp
  89. ./linux_svga/debug/fileman.o : ../inc/indian.hpp
  90. ./linux_svga/debug/fileman.o : ../inc/netface.hpp
  91. ./linux_svga/debug/fileman.o : ../inc/sock.hpp
  92. ./linux_svga/debug/fileman.o : fileman.hpp
  93.  
  94. undrvx : $(LINUX_X11_undrvx_debug_o_files)
  95.     g++ -o undrvx \
  96.     ./linux_x11/debug/undrv.o \
  97.     ./linux_x11/debug/tcpip.o \
  98.     ./linux_x11/debug/netdrv.o \
  99.     ./linux_x11/debug/gserver.o \
  100.     ./linux_x11/debug/gclient.o \
  101.     ./linux_x11/debug/fileman.o /lib/libXext.a /lib/libX11.a -lm
  102.  
  103. ./linux_x11/debug/undrv.o : undrv.c
  104.     g++ -c -o ./linux_x11/debug/undrv.o undrv.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  105.  
  106. ./linux_x11/debug/undrv.o : tcpip.hpp
  107. ./linux_x11/debug/undrv.o : fileman.hpp
  108. ./linux_x11/debug/undrv.o : gclient.hpp
  109. ./linux_x11/debug/undrv.o : gserver.hpp
  110. ./linux_x11/debug/undrv.o : netdrv.hpp
  111. ./linux_x11/debug/undrv.o : ../inc/netface.hpp
  112. ./linux_x11/debug/undrv.o : ../inc/sock.hpp
  113. ./linux_x11/debug/undrv.o : undrv.hpp
  114. ./linux_x11/debug/undrv.o : ../inc/indian.hpp
  115. ./linux_x11/debug/tcpip.o : tcpip.c
  116.     g++ -c -o ./linux_x11/debug/tcpip.o tcpip.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  117.  
  118. ./linux_x11/debug/tcpip.o : ../inc/sock.hpp
  119. ./linux_x11/debug/tcpip.o : tcpip.hpp
  120. ./linux_x11/debug/netdrv.o : netdrv.c
  121.     g++ -c -o ./linux_x11/debug/netdrv.o netdrv.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  122.  
  123. ./linux_x11/debug/netdrv.o : tcpip.hpp
  124. ./linux_x11/debug/netdrv.o : gclient.hpp
  125. ./linux_x11/debug/netdrv.o : gserver.hpp
  126. ./linux_x11/debug/netdrv.o : undrv.hpp
  127. ./linux_x11/debug/netdrv.o : ../inc/indian.hpp
  128. ./linux_x11/debug/netdrv.o : ../inc/netface.hpp
  129. ./linux_x11/debug/netdrv.o : netdrv.hpp
  130. ./linux_x11/debug/netdrv.o : ../inc/sock.hpp
  131. ./linux_x11/debug/netdrv.o : fileman.hpp
  132. ./linux_x11/debug/gserver.o : gserver.c
  133.     g++ -c -o ./linux_x11/debug/gserver.o gserver.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  134.  
  135. ./linux_x11/debug/gserver.o : undrv.hpp
  136. ./linux_x11/debug/gserver.o : ../inc/indian.hpp
  137. ./linux_x11/debug/gserver.o : ../inc/netface.hpp
  138. ./linux_x11/debug/gserver.o : netdrv.hpp
  139. ./linux_x11/debug/gserver.o : ../inc/sock.hpp
  140. ./linux_x11/debug/gserver.o : gserver.hpp
  141. ./linux_x11/debug/gclient.o : gclient.c
  142.     g++ -c -o ./linux_x11/debug/gclient.o gclient.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  143.  
  144. ./linux_x11/debug/gclient.o : undrv.hpp
  145. ./linux_x11/debug/gclient.o : ../inc/indian.hpp
  146. ./linux_x11/debug/gclient.o : ../inc/netface.hpp
  147. ./linux_x11/debug/gclient.o : netdrv.hpp
  148. ./linux_x11/debug/gclient.o : ../inc/sock.hpp
  149. ./linux_x11/debug/gclient.o : gclient.hpp
  150. ./linux_x11/debug/fileman.o : fileman.c
  151.     g++ -c -o ./linux_x11/debug/fileman.o fileman.c -I../inc -g -DMEM_CHECK -DMANAGE_MEM 
  152.  
  153. ./linux_x11/debug/fileman.o : netdrv.hpp
  154. ./linux_x11/debug/fileman.o : undrv.hpp
  155. ./linux_x11/debug/fileman.o : ../inc/indian.hpp
  156. ./linux_x11/debug/fileman.o : ../inc/netface.hpp
  157. ./linux_x11/debug/fileman.o : ../inc/sock.hpp
  158. ./linux_x11/debug/fileman.o : fileman.hpp
  159.  
  160. LINUX_X11_undrvxo_opt_o_files = \
  161.     ./linux_x11/opt/undrv.o \
  162.     ./linux_x11/opt/tcpip.o \
  163.     ./linux_x11/opt/netdrv.o \
  164.     ./linux_x11/opt/gserver.o \
  165.     ./linux_x11/opt/gclient.o \
  166.     ./linux_x11/opt/fileman.o
  167.  
  168. LINUX_SVGA_undrvo_opt_o_files = \
  169.     ./linux_svga/opt/undrv.o \
  170.     ./linux_svga/opt/tcpip.o \
  171.     ./linux_svga/opt/netdrv.o \
  172.     ./linux_svga/opt/gserver.o \
  173.     ./linux_svga/opt/gclient.o \
  174.     ./linux_svga/opt/fileman.o
  175.  
  176. undrvo : $(LINUX_SVGA_undrvo_opt_o_files)
  177.     g++ -o undrvo \
  178.     ./linux_svga/opt/undrv.o \
  179.     ./linux_svga/opt/tcpip.o \
  180.     ./linux_svga/opt/netdrv.o \
  181.     ./linux_svga/opt/gserver.o \
  182.     ./linux_svga/opt/gclient.o \
  183.     ./linux_svga/opt/fileman.o -lvga -lm
  184.  
  185. ./linux_svga/opt/undrv.o : undrv.c
  186.     g++ -c -o ./linux_svga/opt/undrv.o undrv.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  187.  
  188. ./linux_svga/opt/undrv.o : tcpip.hpp
  189. ./linux_svga/opt/undrv.o : fileman.hpp
  190. ./linux_svga/opt/undrv.o : gclient.hpp
  191. ./linux_svga/opt/undrv.o : gserver.hpp
  192. ./linux_svga/opt/undrv.o : netdrv.hpp
  193. ./linux_svga/opt/undrv.o : ../inc/netface.hpp
  194. ./linux_svga/opt/undrv.o : ../inc/sock.hpp
  195. ./linux_svga/opt/undrv.o : undrv.hpp
  196. ./linux_svga/opt/undrv.o : ../inc/indian.hpp
  197. ./linux_svga/opt/tcpip.o : tcpip.c
  198.     g++ -c -o ./linux_svga/opt/tcpip.o tcpip.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  199.  
  200. ./linux_svga/opt/tcpip.o : ../inc/sock.hpp
  201. ./linux_svga/opt/tcpip.o : tcpip.hpp
  202. ./linux_svga/opt/netdrv.o : netdrv.c
  203.     g++ -c -o ./linux_svga/opt/netdrv.o netdrv.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  204.  
  205. ./linux_svga/opt/netdrv.o : tcpip.hpp
  206. ./linux_svga/opt/netdrv.o : gclient.hpp
  207. ./linux_svga/opt/netdrv.o : gserver.hpp
  208. ./linux_svga/opt/netdrv.o : undrv.hpp
  209. ./linux_svga/opt/netdrv.o : ../inc/indian.hpp
  210. ./linux_svga/opt/netdrv.o : ../inc/netface.hpp
  211. ./linux_svga/opt/netdrv.o : netdrv.hpp
  212. ./linux_svga/opt/netdrv.o : ../inc/sock.hpp
  213. ./linux_svga/opt/netdrv.o : fileman.hpp
  214. ./linux_svga/opt/gserver.o : gserver.c
  215.     g++ -c -o ./linux_svga/opt/gserver.o gserver.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  216.  
  217. ./linux_svga/opt/gserver.o : undrv.hpp
  218. ./linux_svga/opt/gserver.o : ../inc/indian.hpp
  219. ./linux_svga/opt/gserver.o : ../inc/netface.hpp
  220. ./linux_svga/opt/gserver.o : netdrv.hpp
  221. ./linux_svga/opt/gserver.o : ../inc/sock.hpp
  222. ./linux_svga/opt/gserver.o : gserver.hpp
  223. ./linux_svga/opt/gclient.o : gclient.c
  224.     g++ -c -o ./linux_svga/opt/gclient.o gclient.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  225.  
  226. ./linux_svga/opt/gclient.o : undrv.hpp
  227. ./linux_svga/opt/gclient.o : ../inc/indian.hpp
  228. ./linux_svga/opt/gclient.o : ../inc/netface.hpp
  229. ./linux_svga/opt/gclient.o : netdrv.hpp
  230. ./linux_svga/opt/gclient.o : ../inc/sock.hpp
  231. ./linux_svga/opt/gclient.o : gclient.hpp
  232. ./linux_svga/opt/fileman.o : fileman.c
  233.     g++ -c -o ./linux_svga/opt/fileman.o fileman.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  234.  
  235. ./linux_svga/opt/fileman.o : netdrv.hpp
  236. ./linux_svga/opt/fileman.o : undrv.hpp
  237. ./linux_svga/opt/fileman.o : ../inc/indian.hpp
  238. ./linux_svga/opt/fileman.o : ../inc/netface.hpp
  239. ./linux_svga/opt/fileman.o : ../inc/sock.hpp
  240. ./linux_svga/opt/fileman.o : fileman.hpp
  241.  
  242. undrvxo : $(LINUX_X11_undrvxo_opt_o_files)
  243.     g++ -o undrvxo \
  244.     ./linux_x11/opt/undrv.o \
  245.     ./linux_x11/opt/tcpip.o \
  246.     ./linux_x11/opt/netdrv.o \
  247.     ./linux_x11/opt/gserver.o \
  248.     ./linux_x11/opt/gclient.o \
  249.     ./linux_x11/opt/fileman.o /lib/libXext.a /lib/libX11.a -lm
  250.  
  251. ./linux_x11/opt/undrv.o : undrv.c
  252.     g++ -c -o ./linux_x11/opt/undrv.o undrv.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  253.  
  254. ./linux_x11/opt/undrv.o : tcpip.hpp
  255. ./linux_x11/opt/undrv.o : fileman.hpp
  256. ./linux_x11/opt/undrv.o : gclient.hpp
  257. ./linux_x11/opt/undrv.o : gserver.hpp
  258. ./linux_x11/opt/undrv.o : netdrv.hpp
  259. ./linux_x11/opt/undrv.o : ../inc/netface.hpp
  260. ./linux_x11/opt/undrv.o : ../inc/sock.hpp
  261. ./linux_x11/opt/undrv.o : undrv.hpp
  262. ./linux_x11/opt/undrv.o : ../inc/indian.hpp
  263. ./linux_x11/opt/tcpip.o : tcpip.c
  264.     g++ -c -o ./linux_x11/opt/tcpip.o tcpip.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  265.  
  266. ./linux_x11/opt/tcpip.o : ../inc/sock.hpp
  267. ./linux_x11/opt/tcpip.o : tcpip.hpp
  268. ./linux_x11/opt/netdrv.o : netdrv.c
  269.     g++ -c -o ./linux_x11/opt/netdrv.o netdrv.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  270.  
  271. ./linux_x11/opt/netdrv.o : tcpip.hpp
  272. ./linux_x11/opt/netdrv.o : gclient.hpp
  273. ./linux_x11/opt/netdrv.o : gserver.hpp
  274. ./linux_x11/opt/netdrv.o : undrv.hpp
  275. ./linux_x11/opt/netdrv.o : ../inc/indian.hpp
  276. ./linux_x11/opt/netdrv.o : ../inc/netface.hpp
  277. ./linux_x11/opt/netdrv.o : netdrv.hpp
  278. ./linux_x11/opt/netdrv.o : ../inc/sock.hpp
  279. ./linux_x11/opt/netdrv.o : fileman.hpp
  280. ./linux_x11/opt/gserver.o : gserver.c
  281.     g++ -c -o ./linux_x11/opt/gserver.o gserver.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  282.  
  283. ./linux_x11/opt/gserver.o : undrv.hpp
  284. ./linux_x11/opt/gserver.o : ../inc/indian.hpp
  285. ./linux_x11/opt/gserver.o : ../inc/netface.hpp
  286. ./linux_x11/opt/gserver.o : netdrv.hpp
  287. ./linux_x11/opt/gserver.o : ../inc/sock.hpp
  288. ./linux_x11/opt/gserver.o : gserver.hpp
  289. ./linux_x11/opt/gclient.o : gclient.c
  290.     g++ -c -o ./linux_x11/opt/gclient.o gclient.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  291.  
  292. ./linux_x11/opt/gclient.o : undrv.hpp
  293. ./linux_x11/opt/gclient.o : ../inc/indian.hpp
  294. ./linux_x11/opt/gclient.o : ../inc/netface.hpp
  295. ./linux_x11/opt/gclient.o : netdrv.hpp
  296. ./linux_x11/opt/gclient.o : ../inc/sock.hpp
  297. ./linux_x11/opt/gclient.o : gclient.hpp
  298. ./linux_x11/opt/fileman.o : fileman.c
  299.     g++ -c -o ./linux_x11/opt/fileman.o fileman.c -I../inc -O2 -DMANAGE_MEM -DNO_CHECK 
  300.  
  301. ./linux_x11/opt/fileman.o : netdrv.hpp
  302. ./linux_x11/opt/fileman.o : undrv.hpp
  303. ./linux_x11/opt/fileman.o : ../inc/indian.hpp
  304. ./linux_x11/opt/fileman.o : ../inc/netface.hpp
  305. ./linux_x11/opt/fileman.o : ../inc/sock.hpp
  306. ./linux_x11/opt/fileman.o : fileman.hpp
  307.  
  308. LINUX_X11_undrvxp_profile_o_files = \
  309.     ./linux_x11/profile/undrv.o \
  310.     ./linux_x11/profile/tcpip.o \
  311.     ./linux_x11/profile/netdrv.o \
  312.     ./linux_x11/profile/gserver.o \
  313.     ./linux_x11/profile/gclient.o \
  314.     ./linux_x11/profile/fileman.o
  315.  
  316. LINUX_SVGA_undrvp_profile_o_files = \
  317.     ./linux_svga/profile/undrv.o \
  318.     ./linux_svga/profile/tcpip.o \
  319.     ./linux_svga/profile/netdrv.o \
  320.     ./linux_svga/profile/gserver.o \
  321.     ./linux_svga/profile/gclient.o \
  322.     ./linux_svga/profile/fileman.o
  323.  
  324. undrvp : $(LINUX_SVGA_undrvp_profile_o_files)
  325.     g++ -o undrvp \
  326.     ./linux_svga/profile/undrv.o \
  327.     ./linux_svga/profile/tcpip.o \
  328.     ./linux_svga/profile/netdrv.o \
  329.     ./linux_svga/profile/gserver.o \
  330.     ./linux_svga/profile/gclient.o \
  331.     ./linux_svga/profile/fileman.o -lvga -lm
  332.  
  333. ./linux_svga/profile/undrv.o : undrv.c
  334.     g++ -c -o ./linux_svga/profile/undrv.o undrv.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  335.  
  336. ./linux_svga/profile/undrv.o : tcpip.hpp
  337. ./linux_svga/profile/undrv.o : fileman.hpp
  338. ./linux_svga/profile/undrv.o : gclient.hpp
  339. ./linux_svga/profile/undrv.o : gserver.hpp
  340. ./linux_svga/profile/undrv.o : netdrv.hpp
  341. ./linux_svga/profile/undrv.o : ../inc/netface.hpp
  342. ./linux_svga/profile/undrv.o : ../inc/sock.hpp
  343. ./linux_svga/profile/undrv.o : undrv.hpp
  344. ./linux_svga/profile/undrv.o : ../inc/indian.hpp
  345. ./linux_svga/profile/tcpip.o : tcpip.c
  346.     g++ -c -o ./linux_svga/profile/tcpip.o tcpip.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  347.  
  348. ./linux_svga/profile/tcpip.o : ../inc/sock.hpp
  349. ./linux_svga/profile/tcpip.o : tcpip.hpp
  350. ./linux_svga/profile/netdrv.o : netdrv.c
  351.     g++ -c -o ./linux_svga/profile/netdrv.o netdrv.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  352.  
  353. ./linux_svga/profile/netdrv.o : tcpip.hpp
  354. ./linux_svga/profile/netdrv.o : gclient.hpp
  355. ./linux_svga/profile/netdrv.o : gserver.hpp
  356. ./linux_svga/profile/netdrv.o : undrv.hpp
  357. ./linux_svga/profile/netdrv.o : ../inc/indian.hpp
  358. ./linux_svga/profile/netdrv.o : ../inc/netface.hpp
  359. ./linux_svga/profile/netdrv.o : netdrv.hpp
  360. ./linux_svga/profile/netdrv.o : ../inc/sock.hpp
  361. ./linux_svga/profile/netdrv.o : fileman.hpp
  362. ./linux_svga/profile/gserver.o : gserver.c
  363.     g++ -c -o ./linux_svga/profile/gserver.o gserver.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  364.  
  365. ./linux_svga/profile/gserver.o : undrv.hpp
  366. ./linux_svga/profile/gserver.o : ../inc/indian.hpp
  367. ./linux_svga/profile/gserver.o : ../inc/netface.hpp
  368. ./linux_svga/profile/gserver.o : netdrv.hpp
  369. ./linux_svga/profile/gserver.o : ../inc/sock.hpp
  370. ./linux_svga/profile/gserver.o : gserver.hpp
  371. ./linux_svga/profile/gclient.o : gclient.c
  372.     g++ -c -o ./linux_svga/profile/gclient.o gclient.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  373.  
  374. ./linux_svga/profile/gclient.o : undrv.hpp
  375. ./linux_svga/profile/gclient.o : ../inc/indian.hpp
  376. ./linux_svga/profile/gclient.o : ../inc/netface.hpp
  377. ./linux_svga/profile/gclient.o : netdrv.hpp
  378. ./linux_svga/profile/gclient.o : ../inc/sock.hpp
  379. ./linux_svga/profile/gclient.o : gclient.hpp
  380. ./linux_svga/profile/fileman.o : fileman.c
  381.     g++ -c -o ./linux_svga/profile/fileman.o fileman.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  382.  
  383. ./linux_svga/profile/fileman.o : netdrv.hpp
  384. ./linux_svga/profile/fileman.o : undrv.hpp
  385. ./linux_svga/profile/fileman.o : ../inc/indian.hpp
  386. ./linux_svga/profile/fileman.o : ../inc/netface.hpp
  387. ./linux_svga/profile/fileman.o : ../inc/sock.hpp
  388. ./linux_svga/profile/fileman.o : fileman.hpp
  389.  
  390. undrvxp : $(LINUX_X11_undrvxp_profile_o_files)
  391.     g++ -o undrvxp \
  392.     ./linux_x11/profile/undrv.o \
  393.     ./linux_x11/profile/tcpip.o \
  394.     ./linux_x11/profile/netdrv.o \
  395.     ./linux_x11/profile/gserver.o \
  396.     ./linux_x11/profile/gclient.o \
  397.     ./linux_x11/profile/fileman.o /lib/libXext.a /lib/libX11.a -lm
  398.  
  399. ./linux_x11/profile/undrv.o : undrv.c
  400.     g++ -c -o ./linux_x11/profile/undrv.o undrv.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  401.  
  402. ./linux_x11/profile/undrv.o : tcpip.hpp
  403. ./linux_x11/profile/undrv.o : fileman.hpp
  404. ./linux_x11/profile/undrv.o : gclient.hpp
  405. ./linux_x11/profile/undrv.o : gserver.hpp
  406. ./linux_x11/profile/undrv.o : netdrv.hpp
  407. ./linux_x11/profile/undrv.o : ../inc/netface.hpp
  408. ./linux_x11/profile/undrv.o : ../inc/sock.hpp
  409. ./linux_x11/profile/undrv.o : undrv.hpp
  410. ./linux_x11/profile/undrv.o : ../inc/indian.hpp
  411. ./linux_x11/profile/tcpip.o : tcpip.c
  412.     g++ -c -o ./linux_x11/profile/tcpip.o tcpip.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  413.  
  414. ./linux_x11/profile/tcpip.o : ../inc/sock.hpp
  415. ./linux_x11/profile/tcpip.o : tcpip.hpp
  416. ./linux_x11/profile/netdrv.o : netdrv.c
  417.     g++ -c -o ./linux_x11/profile/netdrv.o netdrv.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  418.  
  419. ./linux_x11/profile/netdrv.o : tcpip.hpp
  420. ./linux_x11/profile/netdrv.o : gclient.hpp
  421. ./linux_x11/profile/netdrv.o : gserver.hpp
  422. ./linux_x11/profile/netdrv.o : undrv.hpp
  423. ./linux_x11/profile/netdrv.o : ../inc/indian.hpp
  424. ./linux_x11/profile/netdrv.o : ../inc/netface.hpp
  425. ./linux_x11/profile/netdrv.o : netdrv.hpp
  426. ./linux_x11/profile/netdrv.o : ../inc/sock.hpp
  427. ./linux_x11/profile/netdrv.o : fileman.hpp
  428. ./linux_x11/profile/gserver.o : gserver.c
  429.     g++ -c -o ./linux_x11/profile/gserver.o gserver.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  430.  
  431. ./linux_x11/profile/gserver.o : undrv.hpp
  432. ./linux_x11/profile/gserver.o : ../inc/indian.hpp
  433. ./linux_x11/profile/gserver.o : ../inc/netface.hpp
  434. ./linux_x11/profile/gserver.o : netdrv.hpp
  435. ./linux_x11/profile/gserver.o : ../inc/sock.hpp
  436. ./linux_x11/profile/gserver.o : gserver.hpp
  437. ./linux_x11/profile/gclient.o : gclient.c
  438.     g++ -c -o ./linux_x11/profile/gclient.o gclient.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  439.  
  440. ./linux_x11/profile/gclient.o : undrv.hpp
  441. ./linux_x11/profile/gclient.o : ../inc/indian.hpp
  442. ./linux_x11/profile/gclient.o : ../inc/netface.hpp
  443. ./linux_x11/profile/gclient.o : netdrv.hpp
  444. ./linux_x11/profile/gclient.o : ../inc/sock.hpp
  445. ./linux_x11/profile/gclient.o : gclient.hpp
  446. ./linux_x11/profile/fileman.o : fileman.c
  447.     g++ -c -o ./linux_x11/profile/fileman.o fileman.c -I../inc -O2 -g -pg -DMEM_CHECK -DMANAGE_MEM 
  448.  
  449. ./linux_x11/profile/fileman.o : netdrv.hpp
  450. ./linux_x11/profile/fileman.o : undrv.hpp
  451. ./linux_x11/profile/fileman.o : ../inc/indian.hpp
  452. ./linux_x11/profile/fileman.o : ../inc/netface.hpp
  453. ./linux_x11/profile/fileman.o : ../inc/sock.hpp
  454. ./linux_x11/profile/fileman.o : fileman.hpp
  455.  
  456.