| 12345678910111213141516171819202122232425262728293031323334353637383940 | 
							- # eecc - Eclectic Engineer's Control Center
 - # See LICENSE file for copyright and license details.
 - 
 - include config.mk
 - 
 - all: options built.list
 - 
 - built.list:
 - 	@setup/mk.sh build
 - 
 - options:
 - 	@echo eecc build options:
 - 	@echo "VERSION  = ${VERSION}"
 - 	@echo "PREFIX   = ${PREFIX}"
 - 
 - build:
 - 	@setup/mk.sh build
 - 
 - install_manpages: manpages
 - 	@setup/mk.sh install_manpages
 - 
 - manpages:
 - 	@setup/mk.sh manpages
 - 
 - test: install
 - 	@setup/mk.sh test
 - 
 - clean:
 - 	@setup/mk.sh clean
 - 
 - dist: clean
 - 	@setup/mk.sh dist
 - 
 - install: all
 - 	@setup/mk.sh install
 - 
 - uninstall:
 - 	@setup/mk.sh uninstall
 - 
 - .PHONY: all options clean dist install test uninstall
 
 
  |