all: 
	# please read the README before trying to compile this program
	# it doesn't really help you build it, but it gives you instructions
	# about how the program works

new:  plcd.c
	cc -O2 -Wall -o plcd plcd.c
	strip plcd
install: 
	cp plcd /usr/local/bin
	
