pixelflut-freebsd/Makefile

19 lines
384 B
Makefile
Raw Normal View History

2026-07-17 22:25:19 +02:00
CC ?= cc
CFLAGS ?= -std=c11 -O2 -pthread \
-Wall -Wextra -Wpedantic -Wshadow -Wformat=2 \
-Wcast-align -Wstrict-prototypes -Wmissing-prototypes \
-Wpointer-arith -Wwrite-strings
LDFLAGS ?= -pthread
TARGET := pixelflut-render
SRC := new.c
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $@ $(SRC) $(LDFLAGS)
clean:
rm -f $(TARGET)
.PHONY: clean