~ubuntu-branches/ubuntu/utopic/cccc/utopic

« back to all changes in this revision

Viewing changes to build_posixgcc.sh

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2003-08-23 04:34:05 UTC
  • Revision ID: james.westby@ubuntu.com-20030823043405-xnzd3mn3hwtvi6dr
Tags: upstream-3.pre81
ImportĀ upstreamĀ versionĀ 3.pre81

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
#  build_posixgcc.sh
 
3
 
 
4
# This file builds and tests CCCC on a POSIX platform using the
 
5
# GNU C++ compiler.
 
6
 
 
7
cd pccts 
 
8
make clean
 
9
make
 
10
cd ..
 
11
 
 
12
cd cccc
 
13
make -f posixgcc.mak clean
 
14
make -f posixgcc.mak 
 
15
cd ..
 
16
 
 
17
cd test
 
18
make -f posix.mak 
 
19
cd ..
 
20
 
 
21