# don't forget to comment your makefile!
########## WARNGING ##########
# If you copy and paste this file to Eclipse
# make sure you replace the spaces before
# gcc and rm with a Tab character
################################
all: simple
simple: bin/simple.o
gcc -o bin/simple bin/simple.o -g
bin/simple.o: src/simple.c
gcc -c src/simple.c -o bin/simple.o -g
clean:
rm -rf bin/*