 91f5d497ef
			
		
	
	91f5d497ef
	
	
	
		
			
			Proper file extensions help 'copyright header checker' find files that should contain copyright info. Extensions also clearly indicate file type, and help to fit in with the file naming convention. Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
		
			
				
	
	
		
			95 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright(c) 2012-2022 Intel Corporation
 | |
| # SPDX-License-Identifier: BSD-3-Clause
 | |
| #
 | |
| 
 | |
| include ../tools/helpers.mk
 | |
| 
 | |
| CASCTL_DIR = /lib/opencas
 | |
| UDEVRULES_DIR = /lib/udev/rules.d
 | |
| METADATA_DIR:=$(PWD)/../.metadata
 | |
| UTILS_DIR:=$(PWD)/../utils
 | |
| UDEV:=$(shell which udevadm)
 | |
| SYSTEMCTL := $(shell which systemctl)
 | |
| PYTHON3 := $(shell which python3)
 | |
| 
 | |
| ifneq "$(wildcard /usr/lib/systemd/system)" ""
 | |
| 	SYSTEMD_DIR=/usr/lib/systemd/system
 | |
| else
 | |
| 	SYSTEMD_DIR=/lib/systemd/system
 | |
| endif
 | |
| 
 | |
| # Just a placeholder when running make from parent dir without install/uninstall arg
 | |
| all: ;
 | |
| 
 | |
| install: install_files
 | |
| ifeq (, $(PYTHON3))
 | |
| 	$(error package 'python3' not found)
 | |
| else
 | |
| 	@$(UDEV) control --reload-rules
 | |
| 	@$(SYSTEMCTL) daemon-reload
 | |
| 	@$(SYSTEMCTL) -q enable open-cas-shutdown
 | |
| 	@$(SYSTEMCTL) -q enable open-cas
 | |
| 
 | |
| install_files:
 | |
| 	@echo "Installing Open-CAS utils"
 | |
| 
 | |
| 	@install -m 644 -D $(UTILS_DIR)/opencas.conf $(DESTDIR)/etc/opencas/opencas.conf
 | |
| 	@install -m 644 -D $(UTILS_DIR)/ioclass-config.csv $(DESTDIR)/etc/opencas/ioclass-config.csv
 | |
| 	@install -m 644 -D $(METADATA_DIR)/cas_version $(DESTDIR)/var/lib/opencas/cas_version
 | |
| 	@install -m 644 -D $(UTILS_DIR)/opencas.conf.5 $(DESTDIR)/usr/share/man/man5/opencas.conf.5
 | |
| 
 | |
| 	@install -m 644 -D opencas.py $(DESTDIR)$(CASCTL_DIR)/opencas.py
 | |
| 	@install -m 755 -D casctl $(DESTDIR)$(CASCTL_DIR)/casctl
 | |
| 	@install -m 755 -D open-cas-loader.py $(DESTDIR)$(CASCTL_DIR)/open-cas-loader.py
 | |
| 
 | |
| 	@install -m 644 -D etc/dracut.conf.d/opencas.conf $(DESTDIR)/etc/dracut.conf.d/opencas.conf
 | |
| 
 | |
| 	@install -m 755 -d $(DESTDIR)/sbin
 | |
| 	@ln -fs $(CASCTL_DIR)/casctl $(DESTDIR)/sbin/casctl
 | |
| 
 | |
| 	@install -m 644 -D 60-persistent-storage-cas-load.rules $(DESTDIR)$(UDEVRULES_DIR)/60-persistent-storage-cas-load.rules
 | |
| 	@install -m 644 -D 60-persistent-storage-cas.rules $(DESTDIR)$(UDEVRULES_DIR)/60-persistent-storage-cas.rules
 | |
| 
 | |
| 	@install -m 644 -D casctl.8 $(DESTDIR)/usr/share/man/man8/casctl.8
 | |
| 
 | |
| 	@install -m 644 -D open-cas-shutdown.service $(DESTDIR)$(SYSTEMD_DIR)/open-cas-shutdown.service
 | |
| 	@install -m 644 -D open-cas.service $(DESTDIR)$(SYSTEMD_DIR)/open-cas.service
 | |
| 	@install -m 755 -D open-cas.shutdown $(DESTDIR)$(SYSTEMD_DIR)/../system-shutdown/open-cas.shutdown
 | |
| endif
 | |
| 
 | |
| uninstall:
 | |
| 	@echo "Uninstalling Open-CAS utils"
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)/etc/opencas/opencas.conf)
 | |
| 	$(call remove-file,$(DESTDIR)/etc/opencas/ioclass-config.csv)
 | |
| 	$(call remove-directory,$(DESTDIR)/etc/opencas)
 | |
| 	$(call remove-file,$(DESTDIR)/var/lib/opencas/cas_version)
 | |
| 	$(call remove-directory,$(DESTDIR)/var/lib/opencas)
 | |
| 	$(call remove-file,$(DESTDIR)/usr/share/man/man5/opencas.conf.5)
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)$(CASCTL_DIR)/opencas.py)
 | |
| 	$(call remove-file,$(DESTDIR)$(CASCTL_DIR)/casctl)
 | |
| 	$(call remove-file,$(DESTDIR)$(CASCTL_DIR)/open-cas-loader.py)
 | |
| 	$(call remove-directory,$(DESTDIR)$(CASCTL_DIR))
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)/etc/dracut.conf.d/opencas.conf)
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)/sbin/casctl)
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)/usr/share/man/man8/casctl.8)
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)$(UDEVRULES_DIR)/60-persistent-storage-cas-load.rules)
 | |
| 	$(call remove-file,$(DESTDIR)$(UDEVRULES_DIR)/60-persistent-storage-cas.rules)
 | |
| 	@$(UDEV) control --reload-rules
 | |
| 
 | |
| 	@$(SYSTEMCTL) -q disable open-cas-shutdown
 | |
| 	@$(SYSTEMCTL) -q disable open-cas
 | |
| 	@$(SYSTEMCTL) daemon-reload
 | |
| 
 | |
| 	$(call remove-file,$(DESTDIR)$(SYSTEMD_DIR)/open-cas-shutdown.service)
 | |
| 	$(call remove-file,$(DESTDIR)$(SYSTEMD_DIR)/open-cas.service)
 | |
| 	$(call remove-file,$(DESTDIR)$(SYSTEMD_DIR)/../system-shutdown/open-cas.shutdown)
 | |
| 
 | |
| .PHONY: install uninstall clean distclean
 |