all:	lamp

lamp:	stocking attach-top lamp-hw sand cracks toe-holes screw feet touch-up cord shade

stocking:	toe-holes touch-up
	@echo "Hot-glue stocking to leg (leave holes at bottom for screws)"

drill-top:	screw
	@echo "Drill hole in top"

attach-top:	drill-top lamp-hw toe-holes screw cord
	@echo "Attach top to leg"

lamp-hw:	drill-top cord
	@echo "Attach lamp hardware to top"

sand:	attach-top cracks
	@echo "Sand and polish top (Dremel)"

cracks:	attach-top
	@echo "Fill in cracks at top"

toe-holes: feet
	@echo "Drill holes for heel and toe screws"

screw:	toe-holes feet cord
	@echo "Screw leg to base"

feet:
	@echo "Attach feet to base"

touch-up:
	@echo "Touch up bad spots"

cord:
	@echo "Thread power cord through shoe"

shade:	lamp-hw sand
	@echo "Attach lampshade"
