~ubuntu-branches/ubuntu/raring/cccc/raring

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
#  build_posixgcc.sh

# This file builds and tests CCCC on a POSIX platform using the
# GNU C++ compiler.

cd pccts 
make clean
make
cd ..

cd cccc
make -f posixgcc.mak clean
make -f posixgcc.mak 
cd ..

cd test
make -f posix.mak 
cd ..