#
# Makefile:
#
# Copyright (c) 2002 James McKenzie <james@fishsoup.dhs.org>,
# All rights reserved.
#
# $Id: Makefile,v 1.2 2002/04/19 00:31:42 root Exp $
#
# $Log: Makefile,v $
# Revision 1.2  2002/04/19 00:31:42  root
# #
#
# Revision 1.1  2002/04/19 00:03:20  root
# #
#
#
usbradio:usbradio.o
	${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< `libusb-config --libs`

usbradio.o:usbradio.c
	${CC} ${CFLAGS} `libusb-config --cflags` -c -o $@ $<

checkin:
	ci -l -m# usbradio.c Makefile

tidy:checkin
	indent -i2 -ts0 usbradio.c

clean:
	/bin/rm -f usbradio.o usbradio core a.out *~ *% *.BAK

