periodic-table-spell-checker/Makefile

14 lines
116 B
Makefile
Raw Normal View History

2021-06-24 00:59:14 +02:00
CC=cc
SRC=main.c
EXE=main
all: $(EXE)
$(EXE): $(SRC)
$(CC) $(SRC) -o $(EXE)
.PHONY: clean
clean:
rm -f $(EXE)