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

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

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