Newer
Older
PROGRAMS = simple rings spokes dot particle_trail mixer
CFLAGS = -O3 -ffast-math -fno-rtti
# Annoying warnings on by default on Mac OS
CFLAGS += -Wno-tautological-constant-out-of-range-compare -Wno-gnu-static-float-init
all: $(PROGRAMS)
.cpp:
$(CC) $(CFLAGS) $< -o $@ $(LFLAGS)
.PHONY: clean all
clean:
rm -f $(PROGRAMS)