This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Othello/Makefile

30 lines
553 B
Makefile
Raw Permalink Normal View History

2022-11-13 17:37:34 +01:00
CC = gcc
2022-11-17 17:01:11 +01:00
CFLAGS = -std=c11 -pedantic
LDFLAGS =
2022-11-13 17:37:34 +01:00
RM = rm
2022-11-13 17:34:17 +01:00
2022-11-13 17:37:34 +01:00
SOURCES = $(wildcard src/*.c)
2022-11-13 17:38:19 +01:00
OBJECTS = $(patsubst %.c,%.c.o,$(notdir $(SOURCES)))
2022-11-13 17:34:17 +01:00
2022-11-13 17:37:34 +01:00
EXE = othello
2022-11-13 17:34:17 +01:00
%.c.o: src/%.c
2022-11-15 13:47:20 +01:00
$(CC) $(CFLAGS) $(DEVFLAGS)-c $< -o $@
2022-11-13 17:34:17 +01:00
main: CFLAGS += -O3
2022-11-13 17:34:17 +01:00
main: compilation
2022-11-14 16:05:04 +01:00
dev: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
2022-11-28 20:19:38 +01:00
dev: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
dev: LDFLAGS += -fsanitize=undefined
2022-11-13 17:34:17 +01:00
dev: compilation
2022-11-13 17:38:19 +01:00
compilation: $(OBJECTS)
2022-11-14 16:05:04 +01:00
$(CC) -o $(EXE) $(OBJECTS) $(LDFLAGS)
2022-11-13 17:34:17 +01:00
all:
main
clean:
2022-11-13 17:38:19 +01:00
$(RM) $(OBJECTS) $(EXE)