#!/bin/bash

if [ "$1" == "ofiles" ]; then
	find \( -name "*.c" -o -name "*.cpp" \) -exec bash -c 'A="{}"; echo -n " ${A%.*}.o"' \;
	exit 0
fi


