CC=gcc CFLAGS=-Wall -g -std=c11 -O3 LDFLAGS= all: deps mkdir -p bin/ $(CC) $(CFLAGS) -o bin/tempconv *.c deps: $(CC) $(CFLAGS) -c *.c clean: rm *.o