diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2019-09-04 20:42:58 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2019-09-04 20:42:58 +0100 |
commit | 82e835a3c0449ccc1ce8a65c0e6bb2a66b47a7f6 (patch) | |
tree | bffa2e79f2e8459018134979fa14580258110e5e | |
parent | 7dcb1a534249fc4f3ea37f6197228754fb831dd8 (diff) | |
download | imv-82e835a3c0449ccc1ce8a65c0e6bb2a66b47a7f6.tar.gz |
Makefile: Add make all target as default
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |