You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
247 B
Plaintext
17 lines
247 B
Plaintext
6 years ago
|
all: hello
|
||
|
|
||
|
hello: main.o factorial.o hello.o
|
||
|
clang++ main.o factorial.o hello.o -o hello
|
||
|
|
||
|
main.o: main.cpp
|
||
|
clang++ -c main.cpp
|
||
|
|
||
|
factorial.o: factorial.cpp
|
||
|
clang++ -c factorial.cpp
|
||
|
|
||
|
hello.o: hello.cpp
|
||
|
clang++ -c hello.cpp
|
||
|
|
||
|
clean:
|
||
|
rm *o hello
|