aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-27 16:05:41 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-29 23:22:06 +0530
commit438ad16d03f38e0e444f6ad575078ee949679a86 (patch)
tree0688901d51b9b1736679ac92af5a4636d2553bed /Makefile
repo: init
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
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)