#!/bin/sh
if [ -z $1 ]
then
nom="hello"
else 
nom=$1
fi
echo TARGET = $nom > Makefile
cat /usr/local/bin/Makefile.skel >> Makefile
