#
# Copyright 2013 - 2020, Siegfried Lohberg
#
# "THE BEER-WARE LICENSE" (Revision 42):
# Siegfried Lohberg wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return.
#


all: s88udp

s88udp.o: s88udp.h

s88udp: s88udp.o
	gcc -o s88udp s88udp.o -l bcm2835

install: s88udp
	install s88udp /usr/local/bin

clean:
	rm -f *.o s88udp

