lccmake.bat
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 26 Oct 2014 01:03:31 +0000
changeset 391 553a5456963b
parent 240 1a99345a6547
child 427 a7f5e6de19d2
permissions -rw-r--r--
Ported PetitCompiler-(Tests). Name: PetitCompiler-JanKurs.41 Author: JanKurs Time: 25-10-2014, 03:30:28 AM UUID: 105186d1-1187-4ca6-8d66-3d2d47def4d3 Repository: http://smalltalkhub.com/mc/JanKurs/PetitParser/main Name: PetitCompiler-Tests-JanKurs.4 Author: JanKurs Time: 25-10-2014, 03:30:58 AM UUID: 3e798fad-d5f6-4881-a583-f0bbffe27869 Repository: http://smalltalkhub.com/mc/JanKurs/PetitParser/main In addition, fixed some problems to make it compilable under Smalltalk/X: * Fixed PPCTokenNode>>initialize - there's no children instvar, it's initialization removed. * Fixed PPCContextMemento>>propertyAt:ifAbsent: - removed return-in-return, not compilable under Smalltalk/X (C issues) * Fixed PPCContextMemento>>hash - there's no stream instvar, access to it removed. * Fixed PPCAbstractCharacterNode>>compileWith:effect:id: - removed dot after method selector (stc does not like it)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
142
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
@REM -------
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
@REM make using lcc compiler
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
@REM type lccmake, and wait...
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
@REM do not edit - automatically generated from ProjectDefinition
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
@REM -------
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
make.exe -N -f bc.mak -DUSELCC=1 %*
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
240
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
     8
@echo "***********************************"
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
     9
@echo "Buildung stx/goodies/petitparser/analyzer
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    10
@echo "***********************************"
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    11
@cd analyzer
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    12
@call lccmake %1 %2
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    13
@cd ..
142
76aa9cf6568e initial checkin
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
240
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    15
@echo "***********************************"
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    16
@echo "Buildung stx/goodies/petitparser/tests
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    17
@echo "***********************************"
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    18
@cd tests
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    19
@call lccmake %1 %2
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    20
@cd ..
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    21
1a99345a6547 initial
Claus Gittinger <cg@exept.de>
parents: 142
diff changeset
    22