6 lines
130 B
Makefile
6 lines
130 B
Makefile
CC=g++
|
|
CFLAGS=-std=c++11 -Wall -O2
|
|
|
|
##### BREAKTHROUGH
|
|
rand_player: mybt.h rand_player.cpp
|
|
$(CC) $(CFLAGS) rand_player.cpp -o $@
|