source: golgotha/src/i4/test/fli_test/makefile.cc @ 608

Last change on this file since 608 was 80, checked in by Sam Hocevar, 15 years ago
  • Adding the Golgotha source code. Not sure what's going to be interesting in there, but since it's all public domain, there's certainly stuff to pick up.
File size: 2.6 KB
Line 
1/********************************************************************** <BR>
2  This file is part of Crack dot Com's free source code release of
3  Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
4  information about compiling & licensing issues visit this URL</a>
5  <PRE> If that doesn't help, contact Jonathan Clark at
6  golgotha_source@usa.net (Subject should have "GOLG" in it)
7***********************************************************************/
8
9#include "stdmak.cc"
10
11#define I4 "../.."
12
13common()
14{
15  exe_base="fli_test";
16
17  files
18    + I4 "/file/file.cc"
19    + I4 "/file/buf_file.cc"
20    + I4 "/checksum/checksum.cc"
21
22    + I4 "/memory/malloc.cc"
23    + I4 "/memory/growheap.cc"
24 
25    + I4 "/image/image.cc"
26    + I4 "/image/image32.cc"
27    + I4 "/loaders/load.cc"
28    + I4 "/loaders/pcx_load.cc"
29    + I4 "/loaders/fli_load.cc"
30 
31    + I4 "/palette/pal.cc"
32    + I4 "/error/error.cc"
33    + I4 "/error/alert.cc"
34    + I4 "/device/keys.cc"
35    + I4 "/area/rectlist.cc"
36    + I4 "/video/display.cc"
37 
38    + I4 "/window/cursor.cc"
39    + I4 "/window/window.cc"
40    + I4 "/window/wmanager.cc"
41    + I4 "/window/colorwin.cc"
42    + I4 "/window/dragwin.cc"
43    + I4 "/window/style.cc"
44    + I4 "/window/mwmstyle.cc"
45
46    + I4 "/menu/menu.cc"
47    + I4 "/menu/boxmenu.cc"
48    + I4 "/menu/menuitem.cc"
49    + I4 "/menu/textitem.cc"
50    + I4 "/gui/button.cc"
51    + I4 "/gui/butbox.cc"
52
53    + I4 "/string/string.cc"
54    + I4 "/font/plain.cc"
55
56    + I4 "/device/device.cc"
57    + I4 "/device/kernel.cc"
58    + I4 "/init/init.cc"
59
60    + I4 "/time/profile.cc"
61
62    + I4 "/app/app.cc"
63    + I4 "/quantize/median.cc"
64    + I4 "/quantize/histogram.cc"
65    + "fli_test.cc"
66    ;
67
68  win95_files
69    + I4 "/time/win_time.cc"
70    + I4 "/video/win32/win32.cc"
71    + I4 "/video/win32/directx.cc"
72    + I4 "/main/win_main.cc"
73    + I4 "/time/win32_timedev.cc"
74    + I4 "/threads/win32/threads.cc"
75    + I4 "/file/win32/win_file.cc"
76    + I4 "/file/win32/get_dir.cc"
77    ;
78
79  linux_files
80    + I4 "/main/nrm_main.cc"
81    + I4 "/video/x11/x11devs.cc"
82    + I4 "/video/x11/mitshm.cc"
83    + I4 "/time/unixtime.cc"
84    + I4 "/time/timedev.cc"
85    + I4 "/threads/linux/threads.cc"
86    + I4 "/file/linux/linux_file.cc"
87    + I4 "/file/linux/get_dir.cc"
88    ;
89
90  mac_files
91    + I4 "/main/nrm_main.cc"
92    + I4 "/video/mac/draw_sprocket.cc"
93    + I4 "/file/mac/mac_file.cc"
94    + I4 "/file/mac/get_dir.cc"
95    + I4 "/file/mac/dirent.cc"
96    + I4 "/time/mactime.cc"
97    + I4 "/threads/nothread.cc"
98    ;
99
100  includes
101    + I4 "/inc"
102    + I4
103    ;
104}
Note: See TracBrowser for help on using the repository browser.