school/cs142/lab02/Makefile

11 lines
167 B
Makefile
Raw Permalink Normal View History

2016-04-06 20:45:34 -07:00
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