tests/build_win32.sh
author laurent
Wed, 02 Dec 2009 16:11:01 +0100
changeset 221 c6aed7e5f070
parent 132 39f88c3d803d
child 279 c0453b7f99df
permissions -rwxr-xr-x
Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
#!/bin/bash

STFILE=$1

shift

CFLAGS=$*


#CC=gcc
CC=i686-mingw32-gcc

../iec2c $STFILE -I ../lib 
#2>/dev/null

$CC -I ../lib -c STD_RESSOURCE.c $CFLAGS

$CC -I ../lib -c  STD_CONF.c $CFLAGS

$CC -I ../lib -c  plc.c $CFLAGS

$CC -I ../lib main.c STD_CONF.o STD_RESSOURCE.o plc.o $CFLAGS -o test.exe