Download Makefile source code

APPNAME=position_race

all: $(APPNAME)

%: %.c
	cc -g -Wall -Wextra $^ -o $@ -pthread

.PHONY: clean
clean:
	rm -f $(APPNAME) *.o