summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0b493965e6de15216f5d234b18c8c970de304069 (plain)
1
2
3
4
5
6
7
8
9
10
SRC = is.c
FLAGS = -g -Wall
TARGET = is

$(TARGET):
	cc $(FLAGS) $(SRC) -o $(TARGET)

.PHONY: clean
clean:
	rm -f $(TARGET)