Skip to content

Commit

Permalink
makefile: fix dependency, enable warnings
Browse files Browse the repository at this point in the history
The "cshatag" target should depend on "cshatag.c".
  • Loading branch information
rfjakob committed Jan 2, 2019
1 parent 66eaa6a commit b56c888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b56c888

Please sign in to comment.