You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							48 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							48 lines
						
					
					
						
							1.3 KiB
						
					
					
				
								INSTALL=install
							 | 
						|
								PREFIX=/usr
							 | 
						|
								SYSCONFDIR=/etc
							 | 
						|
								
							 | 
						|
								# Check if pkg-config is installed, we need it for building CFLAGS/LDFLAGS
							 | 
						|
								ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
							 | 
						|
								$(error "pkg-config was not found")
							 | 
						|
								endif
							 | 
						|
								
							 | 
						|
								CFLAGS += -std=c99
							 | 
						|
								CFLAGS += -pipe
							 | 
						|
								CFLAGS += -Wall
							 | 
						|
								CFLAGS += -D_GNU_SOURCE
							 | 
						|
								ifndef NOLIBCAIRO
							 | 
						|
								CFLAGS += $(shell pkg-config --cflags cairo xcb-keysyms xcb-dpms)
							 | 
						|
								LDFLAGS += $(shell pkg-config --libs cairo xcb-keysyms xcb-dpms xcb-image)
							 | 
						|
								else
							 | 
						|
								CFLAGS += -DNOLIBCAIRO
							 | 
						|
								CFLAGS += $(shell pkg-config --cflags xcb-keysyms xcb-dpms)
							 | 
						|
								LDFLAGS += $(shell pkg-config --libs xcb-keysyms xcb-dpms xcb-image)
							 | 
						|
								endif
							 | 
						|
								LDFLAGS += -lpam
							 | 
						|
								
							 | 
						|
								FILES:=$(wildcard *.c)
							 | 
						|
								FILES:=$(FILES:.c=.o)
							 | 
						|
								
							 | 
						|
								VERSION:=$(shell git describe --tags --abbrev=0)
							 | 
						|
								GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
							 | 
						|
								CFLAGS += -DVERSION=\"${GIT_VERSION}\"
							 | 
						|
								
							 | 
						|
								.PHONY: install clean uninstall
							 | 
						|
								
							 | 
						|
								all: i3lock
							 | 
						|
								
							 | 
						|
								i3lock: ${FILES}
							 | 
						|
									$(CC) -o $@ $^ $(LDFLAGS)
							 | 
						|
								
							 | 
						|
								clean:
							 | 
						|
									rm -f i3lock ${FILES} i3lock-${VERSION}.tar.gz
							 | 
						|
								
							 | 
						|
								install: all
							 | 
						|
									$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
							 | 
						|
									$(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
							 | 
						|
									$(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
							 | 
						|
									$(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
							 | 
						|
								
							 | 
						|
								uninstall:
							 | 
						|
									rm -f $(DESTDIR)$(PREFIX)/bin/i3lock
							 | 
						|
								
							 |