# Makefile for OSSO Master Volume Interface

INCLUDES= $(DESTDIR)/usr/include

all:
	@echo "Nothing to make in all..."

clean:
	@echo "Nothing to make in clean..."

distclean:
	@echo "Nothing to make in distclean..."

install:
	install -d $(INCLUDES)
	install include/* $(INCLUDES)
