Commit 0fb676da authored by SUDHIR KUMAR's avatar SUDHIR KUMAR

add makefile

parent b2622477
all: main clean
main: main.o sorting.o
g++ main.o sorting.o -o main
main.o: main.cpp sorting.h
g++ -c main.cpp
sorting.o:sorting.cpp sorting.h
g++ -c sorting.cpp
clean:
rm *.o
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