From fc6a5f9412db428c506b7a46e75293ee1e08d737 Mon Sep 17 00:00:00 2001 From: vx_clutch <98831688+vx-clutch@users.noreply.github.com> Date: Tue, 11 Nov 2025 08:14:08 -0500 Subject: [PATCH] Update Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 3f943cc..534e845 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ endif export E Q PROGRAM = yait +TARBALL = $(PROGRAM).tar SRC = $(wildcard *.c) OBJ = $(SRC:.c=.o) HDR = $(wildcard *.h) @@ -37,6 +38,9 @@ clean: install: $(PROGRAM) cp $(PROGRAM) ${BINDIR} +release: $(PROGRAM) + tar cvf $(TARBALL) $(SRC) $(HDR) Makefile README + .c.o: $(E) " CC " $@ $(Q) $(CC) $(CFLAGS) $(DEFINES) -c $< -o $@