diff options
author | JP Aumasson <jp@taurusgroup.ch> | 2022-07-28 11:57:52 +0200 |
---|---|---|
committer | JP Aumasson <jp@taurusgroup.ch> | 2022-07-28 11:57:52 +0200 |
commit | 7ce54fc47ac14bf30ca172a00b16665292f636cc (patch) | |
tree | ee5552e3ca491ac68ecfe7ca4c7649add597f6c4 /makefile | |
parent | Merge pull request #39 from snej/rename-debug-symbol (diff) | |
download | siphash-7ce54fc47ac14bf30ca172a00b16665292f636cc.tar.gz siphash-7ce54fc47ac14bf30ca172a00b16665292f636cc.tar.xz |
debug symbol fix
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ test: $(SRC) $(CC) $(CFLAGS) $^ -o $@ debug: $(SRC) - $(CC) $(CFLAGS) -g $^ -o $@ -DDEBUG + $(CC) $(CFLAGS) -g $^ -o $@ -DDEBUG_SIPHASH vectors: $(SRC) $(CC) $(CFLAGS) $^ -o $@ -DGETVECTORS |