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:
1.3 KB
|
Rev | Line | |
---|
[80] | 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 G1 "../../golg"
|
---|
| 11 |
|
---|
| 12 | char *saturn_files[]= {0};
|
---|
| 13 |
|
---|
| 14 | char *msvc_files[]=
|
---|
| 15 | {
|
---|
| 16 | I4 "/main/win_main.cc",
|
---|
| 17 | I4 "/file/win32/get_dir.cc",
|
---|
| 18 |
|
---|
| 19 | 0
|
---|
| 20 | };
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 | char *linux_files[]=
|
---|
| 24 | {
|
---|
| 25 | I4 "/main/nrm_main.cc",
|
---|
| 26 | I4 "/file/linux/get_dir.cc",
|
---|
| 27 | I4 "/file/linux/linux_file.cc",
|
---|
| 28 | 0
|
---|
| 29 | } ;
|
---|
| 30 |
|
---|
| 31 |
|
---|
| 32 | char *common_files[]=
|
---|
| 33 | {
|
---|
| 34 |
|
---|
| 35 | I4 "/file/file.cc",
|
---|
| 36 | I4 "/file/buf_file.cc",
|
---|
| 37 | I4 "/checksum/checksum.cc",
|
---|
| 38 |
|
---|
| 39 | I4 "/memory/bmanage.cc",
|
---|
| 40 | I4 "/memory/malloc.cc",
|
---|
| 41 | I4 "/memory/growheap.cc",
|
---|
| 42 |
|
---|
| 43 | I4 "/error/error.cc",
|
---|
| 44 | I4 "/error/alert.cc",
|
---|
| 45 |
|
---|
| 46 | I4 "/string/string.cc",
|
---|
| 47 | I4 "/init/init.cc",
|
---|
| 48 |
|
---|
| 49 | I4 "/time/profile.cc",
|
---|
| 50 |
|
---|
| 51 | "resource_save.cc",
|
---|
| 52 | G1 "/drive_map.cc",
|
---|
| 53 | 0
|
---|
| 54 | } ;
|
---|
| 55 |
|
---|
| 56 | char *includes[]= { I4 "/inc",
|
---|
| 57 | I4,
|
---|
| 58 | G1,
|
---|
| 59 | 0 };
|
---|
| 60 |
|
---|
| 61 | char *exe_base="resource_save";
|
---|
Note: See
TracBrowser
for help on using the repository browser.