From a6d5425cba255b50654fb10ad6b46ec30a517ec0 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Tue, 26 Mar 2019 19:45:00 +0300 Subject: [PATCH] Makefile: add all target --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index acb83b6..0b7e044 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ CFLAGS = -std=c99 -Wall -Wextra -Wno-missing-field-initializers -Os LDFLAGS = -ggdb3 LDLIBS = +all: endlessh + endlessh: endlessh.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ endlessh.c $(LDLIBS)