Commit 909b5b43 authored by KSHITIJ SINGHA's avatar KSHITIJ SINGHA

Makefile have some changes. To use make file simply type 'make all'

parent 95d5b83c
all: hello
hello: main.o sorting.o
g++ main.cpp sorting.cpp -o a.out
main.o: main.cpp
g++ -c main.cpp
sorting.o: sorting.cpp
g++ -c sorting.cpp
clean:
rm -rf a.out
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment