#
# Makefile for Camera application test
#
# 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

capture.o: capture.c

capture: capture.o

all: capture

distclean: clean
clean:
	rm -f *.o
	rm -f capture
