From 6bf809731abfd1893e73f6c6b35d0a22dacd6fb2 Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:38:50 +0300 Subject: Small changes to the Makefile and the scripts --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 844cc7b..a567d0b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC = gcc CFLAGS = -Wall -g OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c)) -OUT = hack.out +OUT = trainer $(OUT): $(OBJS) $(CC) $(CFLAGS) -o $@ $(OBJS) -- cgit v1.2.3