From b56c888248f761a36c2b113ed502666e6a59c994 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 2 Jan 2019 12:01:12 +0100 Subject: [PATCH] makefile: fix dependency, enable warnings The "cshatag" target should depend on "cshatag.c". --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 09d3ced..e4a9771 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ PREFIX ?= /usr/local -cshatag: - gcc cshatag.c -l crypto -o cshatag +cshatag: cshatag.c + gcc -Wall -Wextra cshatag.c -l crypto -o cshatag install: cp -v cshatag ${PREFIX}/bin