diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-07-16 18:09:06 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-07-16 18:09:06 -0400 |
commit | d245b30a36301ec7344aa193f29d4244e5511452 (patch) | |
tree | 83a1f6fa2acf227d658c5f2de96d1e41eb7ad00e /Makefile | |
parent | b1089d91ec8a7acef32ab588917680e77862617e (diff) | |
download | sha2-d245b30a36301ec7344aa193f29d4244e5511452.tar.bz2 sha2-d245b30a36301ec7344aa193f29d4244e5511452.zip |
working
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ CFLAGS=-W -Wall -Wextra -pedantic -O3 -std=c11 -OBJS=sha256.o main.o +OBJS=sha256.o main.o tests.o APP=sha256 .PHONY=all clean @@ -16,4 +16,5 @@ clean: $(RM) $(OBJS) $(APP) test: $(APP) - ./$(APP) '' + @# ./$(APP) '' 'foobar' + @./$(APP) |