diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-01 14:20:05 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-11-01 14:20:05 -0400 |
commit | eab0737f1189a7b88f0a37a6b894ca4345b6853f (patch) | |
tree | 05412dcc190ca026dbe51a4ef72bb91ff646e7c6 /conmon/Makefile | |
parent | 26afe3935ce6226fb2b0e6a2993c65432107268a (diff) | |
download | podman-eab0737f1189a7b88f0a37a6b894ca4345b6853f.tar.gz podman-eab0737f1189a7b88f0a37a6b894ca4345b6853f.tar.bz2 podman-eab0737f1189a7b88f0a37a6b894ca4345b6853f.zip |
Fix makefile issue
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'conmon/Makefile')
-rw-r--r-- | conmon/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conmon/Makefile b/conmon/Makefile index b75605d94..67c067be3 100644 --- a/conmon/Makefile +++ b/conmon/Makefile @@ -5,6 +5,7 @@ override LIBS += $(shell pkg-config --libs glib-2.0) override CFLAGS += -std=c99 -Os -Wall -Wextra $(shell pkg-config --cflags glib-2.0) conmon: $(obj) + mkdir -p ../bin/ $(CC) -o ../bin/$@ $^ $(CFLAGS) $(LIBS) .PHONY: clean |