From 267c6a928789c7d0600935fea88fcdbddcf1ea58 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 19 Apr 2023 14:19:49 +0200 Subject: Added Guix manifest file and new make target. * Makefile: Added sanitize target * manifest.scm: Added --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6a4177a..62c49be 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,15 @@ CC=gcc CFLAGS?=-O2 -Wall -Wextra -Werror +PFLAGS=-std=c99 -pedantic PREFIX?=/usr/local all: lpass +sanitize: lpass.c + $(CC) $(PFLAGS) -g -fsanitize=undefined -fsanitize=leak -fsanitize=address -fno-omit-frame-pointer -fanalyzer -lcrypto lpass.c + lpass: lpass.c - $(CC) -std=c99 -pedantic $(CFLAGS) -lcrypto -o lpass lpass.c + $(CC) $(PFLAGS) $(CFLAGS) -lcrypto -o lpass lpass.c clean: rm -rf lpass -- cgit v1.2.3