summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2021-01-01 16:09:45 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit45d2aa065c7ac8143110873c069cd0de471739a7 (patch)
treeedd17d79d4da7cf975cf9593a034663df9621458 /Makefile
parent7f95bc20fcfb1b6ae10ad8c6add5cce7ad3b0963 (diff)
extract games from playtak.com/games database
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 765e2bb..07e1cdc 100644
--- a/Makefile
+++ b/Makefile
@@ -7,12 +7,14 @@ SRCS=$(wildcard src/*.c) $(wildcard include/*.c) $(wildcard 3rd-party/*.c)
OBJS=$(SRCS:.c=.o)
PROG=ctaklm
+SIZE=size
%.o: %.c
cc -c $< -o $@ $(CFLAGS)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $(PROG)
+ $(SIZE) $(PROG)
clean:
rm -f $(PROG)