SensingLab3/makefile

13 lines
171 B
Makefile

all: main arithmetic
g++ main.o arithmetic.o
main: main.cpp
g++ -c main.cpp
arithmetic: arithmetic.cpp arithmetic.h
g++ -c arithmetic.cpp
clean:
rm *.o
rm a.out