summaryrefslogtreecommitdiff
path: root/Makefile
blob: 39b93243ca57b4eec1ead52315af35bccea5ede4 (plain)
1
2
3
4
5
6
7
CC       ?= cc
CFLAGS   += -O3 -march=native -Wall
CPPFLAGS += 
LDFLAGS  += -pthread

turbowc: turbowc.c
	$(CC) $< -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)