packages feed

hsbencher-1.0: example/make_and_ghc/bench1/Makefile


all: hello.exe

run: hello.exe
	./hello.exe

hello.exe: hello.c
	gcc hello.c -o hello.exe

clean:
	rm -f *.exe *.o