CC = gcc
CFLAGS = -g

all: makeimg

makeimg: makeimg.c
	$(CC) $(CFLAGS) -o makeimg makeimg.c

clean:
	rm -f *.o makeimg 
	rm -f *~
	rm -f .*.swp
