# Pcx2Snes Makefile.
#  Converted To Linux By MarcTheMER
#
# This program was origionally created by Neviksti
# as part of his SNES Starter-Kit.

pcx2snes:
	gcc -o pcx2snes pcx2snes.c -I.

install:
	cp -v pcx2snes /usr/local/bin/pcx2snes

remove:
	rm -v /usr/local/bin/pcx2snes
	rm -v pcx2snes


