source: trunk/src/emx/CompileOne.sh@ 1567

Last change on this file since 1567 was 1519, checked in by bird, 21 years ago

Big path handling change. Fixed wrong file headers. A new api or two. A bit of restructuring. And hopefully no new bug :-)

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 790 bytes
Line 
1#!sh
2ROOTDIR=`dirname $0`
3OUTDIR=$ROOTDIR/../../obj/OS2/DEBUG
4SRCDIR=`dirname $1`
5cd $ROOTDIR
6#echo ROOTDIR=$ROOTDIR
7#echo OUTDIR=$OUTDIR
8#echo 1=$1
9#set -x
10 gcc -c -O3 -o $TMP/compileO3.o -fmessage-length=0 -std=gnu99 -Wundef -Wall -Wmissing-prototypes -pedantic -Wno-long-long \
11 -DIN_INNOTEK_LIBC -D_NFILES=20 \
12 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include -DHAVE_CONFIG_H $1 \
13&& gcc -c -O3 -o $TMP/compileLg.o -fmessage-length=0 -std=gnu99 -Wundef -Wall -Wmissing-prototypes -pedantic -Wno-long-long \
14 -DIN_INNOTEK_LIBC -D_NFILES=20 -DHAVE_CONFIG_H -DDEBUG_LOGGING -D__LIBC_STRICT \
15 -I$SRCDIR -I$ROOTDIR/include -I$ROOTDIR/src/include -I$OUTDIR/emx -I$ROOTDIR/src/lib/lgpl/include $1 \
16&& echo succesfully built $1
Note: See TracBrowser for help on using the repository browser.