source: golgotha/src/i4/test/sound3d/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#define I4 "../.."
10#define GOLG "../../../golg"
11
12#include "stdmak.cc"
13
14common()
15{
16  exe_base = "snd3dtst";
17
18  files
19    + I4 "/error/error.cc"
20    + I4 "/error/alert.cc"
21
22    + I4 "/memory/malloc.cc"
23    + I4 "/memory/bmanage.cc"
24    + I4 "/memory/growheap.cc"
25
26    + I4 "/init/init.cc"
27
28    + I4 "/file/file.cc"
29    + I4 "/file/buf_file.cc"
30
31    + I4 "/loaders/wav_load.cc"
32
33    + I4 "/string/string.cc"
34
35    + GOLG "/drive_map.cc"
36
37    + I4 "/sound/sound3d.cc"
38    + I4 "/sound/sound.cc"
39
40    + "snd3dtst.cc"
41    ; 
42
43  linux_files
44    + I4 "/main/nrm_main.cc"
45    + I4 "/file/linux/linux_file.cc"
46    + I4 "/file/linux/get_dir.cc"
47    + I4 "/threads/linux/threads.cc"
48    + I4 "/sound/linux/linux_sound.cc"
49    + I4 "/sound/simple_sound3d.cc"
50    ;
51
52  win95_files
53    + I4 "/checksum/checksum.cc"
54
55    + I4 "/device/keys.cc"
56    + I4 "/area/rectlist.cc"
57    + I4 "/video/display.cc"
58    + I4 "/palette/pal.cc"
59    + I4 "/image/image.cc"
60    + I4 "/image/image32.cc"
61    + I4 "/loaders/load.cc"
62    + I4 "/loaders/pcx_load.cc"
63    + I4 "/loaders/bmp_load.cc"
64    + I4 "/loaders/tga_load.cc"
65
66    + I4 "/window/cursor.cc"     // needs image/load, image/image
67    + I4 "/window/window.cc"     // needs window/cursor
68    + I4 "/window/wmanager.cc"
69    + I4 "/window/colorwin.cc"
70    + I4 "/window/dragwin.cc"
71    + I4 "/window/style.cc"
72    + I4 "/window/mwmstyle.cc"
73
74    + I4 "/menu/menu.cc"
75    + I4 "/menu/boxmenu.cc"
76    + I4 "/menu/menuitem.cc"
77    + I4 "/menu/textitem.cc"
78    + I4 "/gui/button.cc"
79    + I4 "/gui/butbox.cc"
80
81    + I4 "/font/plain.cc"
82
83    + I4 "/device/device.cc"
84    + I4 "/device/kernel.cc"
85
86    + I4 "/time/profile.cc"
87   
88    + I4 "/app/app.cc"
89
90    + I4 "/time/win_time.cc"
91    + I4 "/video/win32/win32.cc"
92    + I4 "/video/win32/gdi_draw.cc"
93    + I4 "/time/win32_timedev.cc"
94    + I4 "/threads/win32/threads.cc"
95    + I4 "/file/win32/win_file.cc"
96    + I4 "/file/win32/get_dir.cc"
97    + I4 "/main/win_main.cc"
98    + I4 "/sound/dsound/d3dsound.cc"
99    ;
100
101  includes
102    + I4 "/inc"
103    + I4
104    + GOLG
105    ;
106
107  win95.cc.win95_includes
108    + "f:/jc/dx3/sdk/inc"
109    ;
110}
Note: See TracBrowser for help on using the repository browser.