mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
17 lines
235 B
Makefile
17 lines
235 B
Makefile
all: hello
|
|
|
|
hello: main.o factorial.o hello.o
|
|
g++ main.o factorial.o hello.o -o hello
|
|
|
|
main.o: main.cpp
|
|
g++ -c main.cpp
|
|
|
|
factorial.o: factorial.cpp
|
|
g++ -c factorial.cpp
|
|
|
|
hello.o: hello.cpp
|
|
g++ -c hello.cpp
|
|
|
|
clean:
|
|
rm -rf *o hello
|