From 45d2aa065c7ac8143110873c069cd0de471739a7 Mon Sep 17 00:00:00 2001 From: tslil Date: Fri, 1 Jan 2021 16:09:45 -0500 Subject: extract games from playtak.com/games database --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') 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) -- cgit v1.3.1