1#!/bin/bash
2
3pwd
4g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src cmy.cpp     -o  cmy
5g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src cmyk.cpp    -o  cmyk
6g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src gray.cpp    -o  gray
7g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src hsl.cpp     -o  hsl
8g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src hsv.cpp     -o  hsv
9g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src rgb.cpp     -o  rgb
10g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src yiq.cpp     -o  yiq
11g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src yuv.cpp     -o  yuv
12g++ $gccBaseSwitch $gccExtraSwitch -I../../../../src hwb.cpp     -o  hwb
13