16 lines
298 B
Makefile
16 lines
298 B
Makefile
all: main arithmetic hello
|
|
g++ main.o arithmetic.o -L/usr/lib/x86_64-linux-gnu -lopencv_core
|
|
|
|
main: main.cpp
|
|
g++ -c main.cpp -l/usr/include
|
|
|
|
arithmetic: arithmetic.cpp arithmetic.h
|
|
g++ -c arithmetic.cpp
|
|
|
|
hello: hello_world.cpp
|
|
g++ -c hello_world.cpp -l/usr/include
|
|
|
|
clean:
|
|
rm *.o
|
|
rm a.out
|