#!/bin/bash

if [ -e Makefile ]; then
  exit 0
fi

# Create a fake Makefile
# This project is just a wrapper. Blas is in fact compiled by clapack
(
cat << END
first:
release: first
debug: first
clean:
install:
END
) > Makefile

