build: Remove Makefile from root

Does basically the same as build.sh
This commit is contained in:
patrick96 2018-12-23 22:54:35 +01:00 committed by Patrick Ziegler
parent d1fe97b90f
commit 148d46b65b
2 changed files with 0 additions and 41 deletions

2
.gitignore vendored
View File

@ -1,6 +1,4 @@
/build
/polybar
/polybar-msg
/tags
/compile_commands.json
*.bak

View File

@ -1,39 +0,0 @@
#
# Polybar development tasks
#
BUILDDIR ?= build
GENERATOR ?= $(shell for c in ninja make; do command -vp $$c; done | xargs basename | sed "s/ninja/Ninja/;s/make/Unix Makefiles/")
all: configure build link
help:
@echo "Available targets:"
@awk -F':' '/^\w*:/ {print " "$$1;}' Makefile
configure:
@echo "\033[32;1m**\033[0m Configuring..."
@mkdir -p $(BUILDDIR)
@cd $(BUILDDIR) && cmake -G "$(GENERATOR)" ..
build:
@echo "\033[32;1m**\033[0m Building..."
@cmake --build $(BUILDDIR)
install:
@echo "\033[32;1m**\033[0m Installing..."
@cmake --build $(BUILDDIR) --target install
link:
@echo "\033[32;1m**\033[0m Linking executable..."
@if [ -x $(BUILDDIR)/bin/polybar ]; then ln -sfv $(BUILDDIR)/bin/polybar; fi
@if [ -x $(BUILDDIR)/bin/polybar-msg ]; then ln -sfv $(BUILDDIR)/bin/polybar-msg; fi
clean:
@echo "\033[32;1m**\033[0m Cleaning up..."
@if [ -d $(BUILDDIR) ]; then rm -rf $(BUILDDIR); fi
@if [ -L polybar ]; then rm -v polybar; fi
@if [ -L polybar-msg ]; then rm -v polybar-msg; fi
.PHONY: configure build link clean help
# vim:ts=2 sw=2 noet nolist