Add git ignore file to avoid accidentially including build products in repository
[binmatch.git] / Makefile
1 CC=gcc
2 CFLAGS=-Wall
3
4 PROG=binmatch
5
6 $(PROG): $(PROG).o
7
8 clean:
9         -rm $(PROG) $(PROG).o