diff options
author | Samuel Fadel <samuel@nihil.ws> | 2023-04-19 14:19:49 +0200 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2023-04-19 14:19:49 +0200 |
commit | 267c6a928789c7d0600935fea88fcdbddcf1ea58 (patch) | |
tree | 55c336f38f6ccdacd1b9b37a320cbeb452845f5c | |
parent | bd625917ceda9c824f2ce609846fd484d207f934 (diff) |
Added Guix manifest file and new make target.
* Makefile: Added sanitize target
* manifest.scm: Added
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | manifest.scm | 12 |
2 files changed, 17 insertions, 1 deletions
@@ -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 diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000..0f2c50f --- /dev/null +++ b/manifest.scm @@ -0,0 +1,12 @@ +(use-modules + (guix profiles) + ;; ((guix licenses) :prefix license:) + (gnu packages base) + (gnu packages commencement) + (gnu packages tls)) + +(packages->manifest + (list + gcc-toolchain + gnu-make + openssl)) |