From 438ad16d03f38e0e444f6ad575078ee949679a86 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Wed, 27 Dec 2023 16:05:41 +0530 Subject: repo: init --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c636e6d --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +OBJECTS = pass.o pass_util.o util.o gpg.o +CC = gcc +CFLAGS = -g -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Wpedantic -fsanitize=address + +pass: $(OBJECTS) + $(CC) $(CFLAGS) -o pass $(OBJECTS) -l gpgme + +pass.o: pass_util.h util.h +pass_util.o: util.h gpg.h + +.PHONY: clean +clean: + rm -f pass $(OBJECTS) -- cgit v1.2.3