49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # This snippet has been shmelessly stol^Hborrowed from thestinger's repose Makefile
 | |
| VERSION = 1.1
 | |
| GIT_DESC=$(shell test -d .git && git describe --always 2>/dev/null)
 | |
| 
 | |
| ifneq "$(GIT_DESC)" ""
 | |
| 	VERSION=$(GIT_DESC)
 | |
| endif
 | |
| 
 | |
| CC	?= gcc
 | |
| CFLAGS += -Wall -std=c99 -Os -DVERSION="\"$(VERSION)\""
 | |
| LDFLAGS += -lxcb -lxcb-xinerama -lxcb-randr
 | |
| CFDEBUG = -g3 -pedantic -Wall -Wunused-parameter -Wlong-long \
 | |
|           -Wsign-conversion -Wconversion -Wimplicit-function-declaration
 | |
| 
 | |
| EXEC = lemonbar
 | |
| SRCS = lemonbar.c
 | |
| OBJS = ${SRCS:.c=.o}
 | |
| 
 | |
| PREFIX?=/usr
 | |
| BINDIR=${PREFIX}/bin
 | |
| 
 | |
| all: ${EXEC}
 | |
| 
 | |
| doc: README.pod
 | |
| 	pod2man --section=1 --center="lemonbar Manual" --name "lemonbar" --release="lemonbar $(VERSION)" README.pod > lemonbar.1
 | |
| 
 | |
| .c.o:
 | |
| 	${CC} ${CFLAGS} -o $@ -c $<
 | |
| 
 | |
| ${EXEC}: ${OBJS}
 | |
| 	${CC} -o ${EXEC} ${OBJS} ${LDFLAGS}
 | |
| 
 | |
| debug: ${EXEC}
 | |
| debug: CC += ${CFDEBUG}
 | |
| 
 | |
| clean:
 | |
| 	rm -f ./*.o ./*.1
 | |
| 	rm -f ./${EXEC}
 | |
| 
 | |
| install: lemonbar doc
 | |
| 	install -D -m 755 lemonbar ${DESTDIR}${BINDIR}/lemonbar
 | |
| 	install -D -m 644 lemonbar.1 ${DESTDIR}${PREFIX}/share/man/man1/lemonbar.1
 | |
| 
 | |
| uninstall:
 | |
| 	rm -f ${DESTDIR}${BINDIR}/lemonbar
 | |
| 	rm -f $(DESTDIR)$(PREFIX)/share/man/man1/lemonbar.1
 | |
| 
 | |
| .PHONY: all debug clean install
 |