tests/build.sh
author laurent
Mon, 21 Sep 2009 12:02:14 +0200
changeset 209 30cbae46190d
parent 132 39f88c3d803d
child 279 c0453b7f99df
permissions -rwxr-xr-x
Remove -pedantic flag to CFLAGS to allow unsigned long long to be compiled
#!/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 -l rt -o test