/**********************************************************************
This file is part of Crack dot Com's free source code release of Golgotha.
for information about compiling & licensing issues visit this URL
 If that doesn't help, contact Jonathan Clark at 
  golgotha_source@usa.net (Subject should have "GOLG" in it) 
***********************************************************************/

#include "stdmak.cc"
#define I4 "../.."

list files[10],linux_files[10],win95_files;
list linux_libs,win95_libs,mac_libs,libs;
list objs, cleans;
list exename,exeopt;
list pretext;

list includes;
list defines;
list exe_base,dll;

common()
{
  exe_base = "dll_test";
  dll
    + "test1.dll"
    + "test2.dll"
    ;

  linux_files[0]
    + I4 "/dll/linux_dll.cc"
    ;

  win95_files
    + I4 "/dll/win32_dll.cc"
    ;

  includes
    + I4
    + I4 "/inc"
    ;

  files[0]
    + "test.cc"
    ;

  files[1]
    + "test1.cc"
    ;

  files[2]
    + "test2.cc"
    ;
}

void make_linux()
//{{{
{
  list targets;

  for (i=0; i