dataflow/Makefile

12 lines
174 B
Makefile
Raw Normal View History

2024-12-09 17:14:57 +01:00
CC=gcc
CFLAGS = -Oz -g3 -march=native -std=c99
CFLAGS += -Ibipbuffer
all: dataflow
dataflow: bipbuffer/bipbuffer.o
.PHONE: clean
clean:
2024-12-09 17:24:27 +01:00
rm -rf *.o dataflow bipbuffer/*.o