default: .PHONY all
.PHONY:

all: .PHONY mkubootimage

SRCS = crc32.c mkubootimage.c

mkubootimage: $(SRCS:.c=.o)
	$(CC) $(LDFLAGS) -o $@ $(SRCS:.c=.o)

mkubootimage.c: uboot.h

clean: .PHONY
	-rm -f $(SRCS:.c=.o)
	-rm -f mkubootimage
