15 lines
194 B
Makefile
15 lines
194 B
Makefile
|
CPPFLAGS=-Wall -g -std=c++0x
|
||
|
|
||
|
all: cootie
|
||
|
|
||
|
cootie: cootie.cc dice.o player.o
|
||
|
|
||
|
dice.o: dice.cc dice.h
|
||
|
player.o: player.cc player.h
|
||
|
|
||
|
test: all
|
||
|
./cootie 4
|
||
|
|
||
|
clean:
|
||
|
@rm -rvf cootie cootie.dSYM *.o
|