Commit bbf91dfe authored by Neeraj Kerkar's avatar Neeraj Kerkar

add makefile

parent e5467bff
CC = g++
main : main.o sorting.o
$(CC) -g -o $@ $^
main.o : main.cpp
$(CC) -c $<
sorting.o : sorting.cpp
$(CC) -c $<
clean:
rm -f *.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