all:


install: copy-bin


copy-etc: mkdir-etc
	@printf '/etc config file not implemented yes.\n'
	@#if [ ! -e /etc/aptly-lirionde/aptly.conf ]; then \
		install -vpm0644 -oroot -groot -t /etc/lirion/aptly.conf ./etc/aptly-lirionde.conf; \
		else printf '/etc/lirion/aptly.conf existing, skipping.\n'; \
	fi

mkdir-etc:
	@printf '/etc config file not implemented yet.\n'
	@#install -dvm0755 -oroot -groot /etc/lirion



copy-bin:
	@install -vpm0755 -oroot -groot -t /usr/bin bin/createrepo-lirionde


.PHONY: mkdir-etc copy-etc copy-bin