summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/GHSProjectCreator.pm
blob: 6c92b13d6b2bc53bf7934db7d477531a5d4a98bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package GHSProjectCreator;

# ************************************************************
# Description   : Not a complete implementation for GHS
# Author        : Chad Elliott
# Create Date   : 4/19/2002
# ************************************************************

# ************************************************************
# Pragmas
# ************************************************************

use strict;
use ProjectCreator;

use vars qw(@ISA);
@ISA = qw(ProjectCreator);

# ************************************************************
# Subroutine Section
# ************************************************************

sub project_file_name {
  my($self) = shift;
  return $self->transform_file_name("ghs/" .
                                    $self->project_name() . ".bld");
}


sub get_dll_exe_template_input_file {
  my($self) = shift;
  return "ghsexe";  
}
 
 
sub get_dll_template_input_file {
  my($self) = shift;
  return "ghsdll";  
}
 
 
sub get_template {
  my($self) = shift;
  return "ghs";
}


1;