# Makefile for mksunxiboot
CC = gcc
CFLAGS = -Wall -Wextra -O2

PROG = mksunxiboot

all: $(PROG)

clean:
	rm -rf *.o $(PROG)
