aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-09-04 20:42:58 +0100
committerHarry Jeffery <harry@exec64.co.uk>2019-09-04 20:42:58 +0100
commit82e835a3c0449ccc1ce8a65c0e6bb2a66b47a7f6 (patch)
treebffa2e79f2e8459018134979fa14580258110e5e
parent7dcb1a534249fc4f3ea37f6197228754fb831dd8 (diff)
downloadimv-82e835a3c0449ccc1ce8a65c0e6bb2a66b47a7f6.tar.gz
Makefile: Add make all target as default
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 79fd23a..9b1159d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: imv debug clean check install uninstall doc
+.PHONY: all imv debug clean check install uninstall doc
include config.mk
@@ -112,6 +112,8 @@ override CPPFLAGS += -DIMV_VERSION=\""$(VERSION)"\"
TFLAGS ?= -g $(CFLAGS) $(CPPFLAGS) $(shell pkg-config --cflags cmocka)
TLIBS := $(LIBS) $(shell pkg-config --libs cmocka)
+all: imv doc
+
imv: $(TARGETS)
$(TARGET_WAYLAND): $(OBJECTS) $(WL_OBJECTS)