CC ?= cc CFLAGS += -O3 -march=native -Wall CPPFLAGS += LDFLAGS += -pthread turbowc: turbowc.c $(CC) $< -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)