fix Makefile after rename to pixelflut.c

This commit is contained in:
Alexander Jacobsen 2026-07-18 01:27:22 +02:00
parent 52ee2fd391
commit e930b6ac20

View file

@ -20,8 +20,8 @@ TARGETS = pixelflut-render pixelflut-bench
all: $(TARGETS)
pixelflut-render: new.c pixelflut.h
$(CC) $(STD) $(OPT) -pthread $(WARN) $(EXTRA) -o $@ new.c
pixelflut-render: pixelflut.c pixelflut.h
$(CC) $(STD) $(OPT) -pthread $(WARN) $(EXTRA) -o $@ pixelflut.c
pixelflut-bench: bench.c pixelflut.h
$(CC) $(STD) $(OPT) -pthread $(WARN) $(EXTRA) -o $@ bench.c