# ARCADEmini USB driver for Linux test application
# version 1.2.2 date 2005-12-15
# part of the ARCADEmini project - http[s]://arcademini.schuermans.info/
# Copyright (C) 2003-2005 Stefan Schuermans <1stein@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
