#
# Makefile for SPI device debug utility (using spidev driver)
#
# Copyright (C) 2016 Renesas Electronics Europe GmbH
# 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

spidev-dbg.o: spidev-dbg.c

spidev-dbg: spidev-dbg.o

all: spidev-dbg

distclean: clean
clean:
	rm -f *.o
	rm -f spidev-dbg
