##### <UCONIO.H> Makefile #####
##### This is the include makefile of uconio  #####
##### by Ryan Daniels - <ryan@pablovidal.org> ######

## Include Path Definition
HDRPATH = /usr/include

all:
clean:

install: uconio.h
	@echo "Installing the UConio header into '$(HDRPATH)'..."
	cp -f $< $(HDRPATH) 
	@echo "Installation was Done!"

uninstall:
	@echo "Uninstalling the UConio header from '$(HDRPATH)'..."
	-rm -rf $(HDRPATH)/uconio.h
	@echo "Uninstall was Done!"
