Home | History | Annotate | Download | only in emma
      1 # -----------------------------------------------------------------------------
      2 # misc aliases:
      3 
      4 classes:                                        classes
      5 files:                                          files
      6 srcgen:                                         srcgen
      7 
      8 # -----------------------------------------------------------------------------
      9 # ---- root locations created by the build:
     10 
     11 # root dir of all build output:
     12 out.dir:                                        ${basedir}/out
     13 
     14 # distribution dir:
     15 dist.dir:                                       ${basedir}/dist
     16 
     17 # distribution dir:
     18 release.dir:                                    ${basedir}/release
     19 
     20 # directory for scratch files:
     21 temp.dir:                                       ${out.dir}/temp
     22 
     23 # -----------------------------------------------------------------------------
     24 # ---- module-specific locations created by the build:
     25 
     26 # -----------------------------------------------------------------------------
     27 # core module:
     28 
     29 core.classes.out.dir:                           ${out.dir}/${core}/${classes}
     30 core.srcgen.out.dir:                            ${out.dir}/${core}/${srcgen}
     31 core.res.out.dir:                               ${out.dir}/${core}/${res}
     32 
     33 # -----------------------------------------------------------------------------
     34 # ant module:
     35 
     36 ant.classes.out.dir:                            ${out.dir}/${ant}/${classes}
     37 ant.srcgen.out.dir:                             ${out.dir}/${ant}/${srcgen}
     38 
     39 # -----------------------------------------------------------------------------
     40 # tools module:
     41 
     42 tools.classes.out.dir:                          ${out.dir}/${tools}/${classes}
     43 tools.srcgen.out.dir:                           ${out.dir}/${tools}/${srcgen}
     44 
     45 # -----------------------------------------------------------------------------
     46 # test module:
     47 
     48 test.classes.out.dir:                           ${out.dir}/${test}/${classes}
     49 test.srcgen.out.dir:                            ${out.dir}/${test}/${srcgen}
     50 
     51 # -----------------------------------------------------------------------------
     52 # end of file
     53