# derived from:

# QIC-02 driver v0.4.1.3 support files v1.6b installation Makefile
# Jeff Stern <jstern@eclectic.ss.uci.edu>
#
# Makefile for installing Hennus Bergman's QIC-02 tape driver support
# files.. This does NOT do *everything* you need to do to install the
# driver.  See README.tape-0.4.1.3 for instructions on doing complete
# installation for latest version..  -js.

# Did some minor edits to avoid installation if user just types ``make''.
# Version stuff is updated from master files to make maintenance
# easier. -- hhb.


SBIN=$(DESTDIR)/sbin
MAN=$(DESTDIR)/usr/man

INSTSTUFF=qic02conf

.PHONY: dummy
dummy: $(INSTSTUFF)

.PHONY: install
install: $(INSTSTUFF)
	cp qic02conf $(SBIN)/

clean::
	-rm -f qic02conf

qic02conf: qic02conf.c
	gcc -O2 -Wall -s -N -o $@ $<
