~ubuntu-branches/ubuntu/feisty/cproto/feisty

« back to all changes in this revision

Viewing changes to testing/descrip.mms

  • Committer: Bazaar Package Importer
  • Author(s): Carsten Leonhardt
  • Date: 2000-09-02 21:14:55 UTC
  • Revision ID: james.westby@ubuntu.com-20000902211455-ixe8p17zhnuk6jft
Tags: upstream-4.6d
ImportĀ upstreamĀ versionĀ 4.6d

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: descrip.mms,v 4.1 1998/01/20 00:59:43 cthuang Exp $
 
2
# VMS make-file for CPROTO test directory
 
3
#
 
4
 
 
5
####### (Development) ##########################################################
 
6
 
 
7
####### (Command-line Options) #################################################
 
8
 
 
9
####### (Standard Lists) #######################################################
 
10
 
 
11
REF_FILES=\
 
12
        case1.ref       case2.ref       case3.ref       case4.ref\
 
13
        case5.ref       case6.ref       case7.ref       case8.ref\
 
14
        case9.ref       case10.ref      case11.ref      case12.ref\
 
15
        case13.ref      case14.ref      case15.ref\
 
16
        case17.ref      case18.ref      case19.ref      case20.ref\
 
17
        case21.ref
 
18
 
 
19
COM_FILES=\
 
20
        case1.dcl       case2.dcl       case3.dcl       case4.dcl\
 
21
        case5.dcl       case6.dcl       case7.dcl       case8.dcl\
 
22
        case9.dcl       case10.dcl      case11.dcl      case12.dcl\
 
23
        case13.dcl      case14.dcl      case15.dcl\
 
24
        case17.dcl      case18.dcl      case19.dcl      case20.dcl\
 
25
        case21.dcl
 
26
 
 
27
TESTDATA=\
 
28
        syntax.c\
 
29
        $(COM_FILES)\
 
30
        $(REF_FILES)
 
31
 
 
32
SCRIPTS =\
 
33
        run_tests.sh    run_tests.com
 
34
 
 
35
SOURCES = makefile descrip.mms $(SCRIPTS) $(TESTDATA)
 
36
 
 
37
ALL     = $(SCRIPTS)
 
38
 
 
39
####### (Standard Productions) #################################################
 
40
all :   $(ALL) [-.bin]$(THIS).exe [-.bin]$(THIS)1.exe
 
41
        @ write sys$output "Type ""mms run_tests""
 
42
 
 
43
clean :
 
44
        @- write sys$output "** made $@"
 
45
clobber :       clean
 
46
        @- write sys$output "** made $@"
 
47
destroy :
 
48
        @- remove -vf *.*;*
 
49
run_tests :     $(SCRIPTS) $(TESTDATA)
 
50
        @run_tests
 
51
 
 
52
####### (Details of Productions) ###############################################