source: golgotha/src/i4/file/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: 1.2 KB
RevLine 
[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 "../../i4"
10
11#include "stdmak.cc"
12
13common()
14{
15  exe_base = "file_test";
16
17  files
18    + I4 "/error/error.cc"
19    + I4 "/memory/malloc.cc"
20    + I4 "/memory/growheap.cc"
21    + I4 "/init/init.cc"
22    + I4 "/file/file.cc"
23    + I4 "/file/buf_file.cc"
24    + I4 "/string/string.cc"
25
26    + "file_test.cc"
27    ;
28
29  linux_files
30    + I4 "/file/linux/linux_file.cc"
31    + I4 "/file/linux/get_dir.cc"
32    ;
33
34  win95_files
35    + I4 "/file/win32/win_file.cc"
36    + I4 "/file/win32/get_dir.cc"
37    ;
38
39  mac_files
40    + I4 "/file/mac/mac_file.cc"
41    + I4 "/file/mac/get_dir.cc"
42    + I4 "/file/mac/dirent.cc"
43    ;
44
45  includes
46    + I4 "/inc"
47    + I4
48    ;
49}
Note: See TracBrowser for help on using the repository browser.