11 lines
167 B
Makefile
11 lines
167 B
Makefile
|
CPPFLAGS=-Wall -g -std=c++0x
|
||
|
|
||
|
all: timer temperature binary
|
||
|
|
||
|
binary: binary.cpp
|
||
|
temperature: temperature.cpp
|
||
|
timer: timer.cpp
|
||
|
|
||
|
clean:
|
||
|
rm -rv timer temperature binary
|