Skip to content
Snippets Groups Projects
Commit aa63b930 authored by Miguel Espino's avatar Miguel Espino
Browse files

fixed make file error

parent 1678e946
No related branches found
No related tags found
No related merge requests found
......@@ -41,10 +41,10 @@ input-routines.o : input-routines.c qsort.h
$(CC) -c $(CFLAGS) $(CPPFLAGS) input-routines.c -o input-routines.o -I.
swap.o : swap.c qsort.h
$(CC) -c $(CFLAGS) $(CPPFLAGS) swap.o -o swap.c -I.
$(CC) -c $(CFLAGS) $(CPPFLAGS) swap.c -o swap.o -I.
sortMain.o : sortMain.c qsort.h
$(CC) -c $(CFLAGS) $(CPPFLAGS) sortMain.c -o sortMain.c -I.
$(CC) -c $(CFLAGS) $(CPPFLAGS) sortMain.c -o sortMain.o -I.
myQsort : $(SORT_OBJS)
$(CC) $(SORT_OBJS) -o myQsort -lm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment