aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOrfeas <38209077+0xfea5@users.noreply.github.com>2024-04-23 19:38:50 +0300
committerOrfeas <38209077+0xfea5@users.noreply.github.com>2024-04-23 19:38:50 +0300
commit6bf809731abfd1893e73f6c6b35d0a22dacd6fb2 (patch)
tree2badb20131925d49384ae4f81924f02bcff58617 /Makefile
parentAdded the presentation (diff)
downloadlinux-game-trainer-6bf809731abfd1893e73f6c6b35d0a22dacd6fb2.tar.gz
linux-game-trainer-6bf809731abfd1893e73f6c6b35d0a22dacd6fb2.zip
Small changes to the Makefile and the scripts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 844cc7b..a567d0b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1CC = gcc 1CC = gcc
2CFLAGS = -Wall -g 2CFLAGS = -Wall -g
3OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c)) 3OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
4OUT = hack.out 4OUT = trainer
5 5
6$(OUT): $(OBJS) 6$(OUT): $(OBJS)
7 $(CC) $(CFLAGS) -o $@ $(OBJS) 7 $(CC) $(CFLAGS) -o $@ $(OBJS)