compiler/tests/Make.spec
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 04 Nov 2014 00:17:12 +0000
changeset 8 c2de4aaa2670
permissions -rw-r--r--
Tests moved to separate sub-package named tests to follow convention.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
# $Header$
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
# DO NOT EDIT
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
# automagically generated from the projectDefinition: ctu_dart_compiler_tests.
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
# Warning: once you modify this file, do not rerun
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
# This file contains specifications which are common to all platforms.
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
# Do NOT CHANGE THESE DEFINITIONS
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
# (otherwise, ST/X will have a hard time to find out the packages location from its packageID,
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
#  to find the source code of a class and to find the library for a package)
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
MODULE=ctu
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
MODULE_DIR=dart/compiler/tests
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
PACKAGE=$(MODULE):$(MODULE_DIR)
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
# Argument(s) to the stc compiler (stc --usage).
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
#  -headerDir=. : create header files locally
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
#                (if removed, they will be created as common
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
#  -Pxxx       : defines the package
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
#  -Zxxx       : a prefix for variables within the classLib
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
#  -Dxxx       : defines passed to to CC for inline C-code
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
#  -Ixxx       : include path passed to CC for inline C-code
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
#  +optspace   : optimized for space
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
#  +optspace2  : optimized more for space
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    29
#  +optspace3  : optimized even more for space
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    30
#  +optinline  : generate inline code for some ST constructs
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    31
#  +inlineNew  : additionally inline new
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    32
#  +inlineMath : additionally inline some floatPnt math stuff
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    33
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    34
# ********** OPTIONAL: MODIFY the next line(s) ***
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    35
# STCLOCALOPTIMIZATIONS=+optinline +inlineNew
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    36
# STCLOCALOPTIMIZATIONS=+optspace3
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
STCLOCALOPTIMIZATIONS=+optspace3
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
# Argument(s) to the stc compiler (stc --usage).
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
#  -warn            : no warnings
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
#  -warnNonStandard : no warnings about ST/X extensions
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
#  -warnEOLComments : no warnings about EOL comment extension
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
#  -warnPrivacy     : no warnings about privateClass extension
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
#
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    46
# ********** OPTIONAL: MODIFY the next line(s) ***
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    47
# STCWARNINGS=-warn
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
# STCWARNINGS=-warnNonStandard
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    49
# STCWARNINGS=-warnEOLComments
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
STCWARNINGS=-warnNonStandard
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    52
COMMON_CLASSES= \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
	Dart::ParserTests \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    54
	Dart::ScannerTests \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
	ctu_dart_compiler_tests \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
COMMON_OBJS= \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
    $(OUTDIR_SLASH)Dart__ParserTests.$(O) \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    62
    $(OUTDIR_SLASH)Dart__ScannerTests.$(O) \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
    $(OUTDIR_SLASH)ctu_dart_compiler_tests.$(O) \
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    65
c2de4aaa2670 Tests moved to separate sub-package named tests to follow convention.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66