From bbc81042481e8e32a7e5cc1d90d53d585a548d23 Mon Sep 17 00:00:00 2001 From: Chloe M Date: Sat, 15 Aug 2026 17:03:19 -0500 Subject: initial commit Signed-off-by: Chloe M --- newpass/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 newpass/Makefile (limited to 'newpass/Makefile') diff --git a/newpass/Makefile b/newpass/Makefile new file mode 100644 index 0000000..8d28a99 --- /dev/null +++ b/newpass/Makefile @@ -0,0 +1,13 @@ +CFILES = \ + core/newpass.c + +OUT_FILE = ../bin/newpass +CFLAGS = -Wall -pedantic +CC = clang + +.PHONY: all +all: $(OUT_FILE) + +.PHONY: $(OUT_FILE) +$(OUT_FILE): + $(CC) $(CFLAGS) $(CFILES) -o $@ -- cgit v1.2.3