#irsens3.asm make file
#For gpasm pic assembler under Linux

target = 12c508

sname = irsens3

#
all: $(sname).hex
# Assemble the program from the asm source
$(sname).hex: $(sname).asm
	gpasm  $(sname).asm
#
# Clean up the directory
clean:
	rm -f $(sname).hex  core  $(sname).asm $(sname).lst

#For the Newfound Electronics Warp-13 pic programmer
pgm:
	tm4 -c $(target) -z $(config) $(sname).hex




