14 lines
351 B
Makefile
14 lines
351 B
Makefile
# Copyright (c) Rhizome <rhizome@wip.sh>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.POSIX:
|
|
|
|
CFLAGS += -Wall -Wextra -pedantic -std=c99
|
|
CFLAGS += -flto -O2
|
|
|
|
rotagen: rotagen.o conf_reader.o Makefile
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o rotagen rotagen.o conf_reader.o
|
|
|
|
rotagen.o: rotagen.c rotagen.h Makefile
|
|
conf_reader.o: conf_reader.c rotagen.h Makefile
|