summaryrefslogtreecommitdiff
path: root/30_sort_lines/Makefile
blob: 28452a5247609b8cacc7372eece32acebdb25297 (plain)
1
2
3
4
5
6
CFLAGS=-ggdb3 -Wall -Werror -std=gnu99 -pedantic
sortLines: sortLines.c
        gcc $(CFLAGS) -o sortLines sortLines.c

clean:
        rm -f sortLines *~