blob: e632760b27518e535aee86dbaa5fbffc6c7300ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.POSIX:
CC = gcc
CFLAGS = -std=c11 -Wall -Wpedantic -O3 `sdl2-config --cflags`
LDLIBS = `sdl2-config --libs`
AR = ar
ARFLAGS = rcs
all: libhitomezashi.a hitomezashi_cli
libhitomezashi.a: hitomezashi.o
$(AR) $(ARFLAGS) libhitomezashi.a hitomezashi.o
hitomezashi.o: hitomezashi.c hitomezashi.h
hitomezashi_cli: hitomezashi_cli.o libhitomezashi.a
hitomezashi_cli.o: hitomezashi_cli.c hitomezashi_cli.h
format-code:
clang-format -i *.c *.h
clean:
rm -f *.a *.o hitomezashi_cli
|