#
# Makefile for OV10640/OV490 SPI flash firmware update tool
#
# Copyright (C) 2016 Renesas Electronics Corporation
# Copyright (C) 2016 Cogent Embedded, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License.
#

CFLAGS ?= -O2 -W -Wall

v4l2-fw.o: v4l2-fw.c

v4l2-fw: v4l2-fw.o

all: v4l2-fw

distclean: clean
clean:
	rm -f *.o
	rm -f v4l2-fw
