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.
|
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
|