# ARCADEmini USB driver for Linux test application
# version 1.2.8 date 2014-01-02
# part of the ARCADEmini project - http[s]://arcademini.schuermans.info/
# Copyright (C) 2003-2009 Stefan Schuermans <stefan@schuermans.info>
# Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html

CC = gcc
CFLAGS = -Wall -O2

.phony: all clean

all: am_usb_test

am_usb_test: am_usb.h am_usb_test.c
	$(CC) $(CFLAGS) -o am_usb_test am_usb_test.c

clean:
	rm -f am_usb_test
