CC=gcc
PROGS = mkimage 
OBJS += mkimage.c
ALL :  mkimage 
mkimage:$(OBJS)  
	$(CC) -o mkimage $(OBJS)
clean:
	rm -f $(PROGS)
