# Copyright © 2015 Luke Shumaker # This work is free. You can redistribute it and/or modify it under the # terms of the Do What The Fuck You Want To Public License, Version 2, # as published by Sam Hocevar. See the COPYING file for more details. install-targets = \ $(DESTDIR)/etc/netctl/hooks/network-online \ $(DESTDIR)/lib/systemd/system/network-online@.service \ $(DESTDIR)/lib/network/network-online all: install: $(install-targets) uninstall: rm -f -- $(install-targets) .PHONY: all install uninstall $(DESTDIR)/etc/netctl/hooks/network-online: netctl-hook install -Dm755 $< $@ $(DESTDIR)/lib/systemd/system/network-online@.service: network-online@.service install -Dm644 $< $@ $(DESTDIR)/lib/network/network-online: network-online install -Dm755 $< $@