aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7e350b86890a05703b6743a2f0eb6827a82abfb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: all clean

CC = clang
CFLAGS = -std=c90 -Weverything

all : ls pwd sort

clean :
	rm -f -- *.o
	rm -f ls pwd sort