From 0c19d693bfe1dd3071c71d9d95f68c0db5cc75d0 Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Sat, 11 Jan 2025 19:39:53 -0600 Subject: Fix genpassword function, delete buggy (v)asprintf implementation(s) --- src/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index a97848d..03f2f05 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,7 @@ CC = gcc SHELL = /usr/bin/bash -DEBUG_CFLAGS := -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -Og +DEBUG_CFLAGS := -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -O0 RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto CFLAGS = -Wall -Wextra -Wpedantic -pedantic-errors $(DEBUG_CFLAGS) $$(pkg-config --cflags libsodium) @@ -14,7 +14,7 @@ RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto LDFLAGS += $(DEBUG_LDFLAGS) $$(pkg-config --libs-only-L libsodium) -BINARIES := main +BINARIES := main encryption .PHONY: all clean @@ -27,5 +27,5 @@ shared.o: shared.c shared.h encryption: encryption.c encryption.h shared.o shared.h -c clean: # huh, didn't think that would work +c clean: rm -rvf $(BINARIES) $(wildcard *.o) \ No newline at end of file -- cgit v1.2.3