From 0cedd8738ed1744642a6738ab5abdd6876d47c2d Mon Sep 17 00:00:00 2001 From: Ivan Kuchin Date: Tue, 24 Mar 2020 20:34:50 +0100 Subject: [PATCH] add all make target and remove dependency of build on update_usage --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5ff6dc9..04b61d6 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,9 @@ bindir = $(prefix)/bin INSTALL = install INSTALL_PROGRAM = $(INSTALL) -m 755 -build: blueutil update_usage +all: build + +build: blueutil format: clang-format -i *.m @@ -27,4 +29,4 @@ install: build uninstall: $(RM) $(DESTDIR)$(bindir)/blueutil -.PHONY: build format test clean install uninstall +.PHONY: all build format test clean install uninstall