diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 17:35:22 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 17:46:55 +0530 |
commit | 4ff6158a6cd29e87222387870e6f01aca41b8183 (patch) | |
tree | eedc21363355691d2bc48d942ebe1cac8db0685d /Makefile | |
parent | 246fa34293969eed0ebd650944e52b46c677b054 (diff) |
meson: init
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index c636e6d..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -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) |