#!/bin/bash

cat >> Makefile << EOF

CFLAGS=-Wall -O2

all: fhist

clean:;
	rm -rf fhist fhist.o
EOF

exit 0
