langcmp/c/Makefile
2023-08-24 08:53:49 +02:00

14 lines
143 B
Makefile

CC := gcc
SRC = sleeptest.c
OUT = sleeptest
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
$(CC) -Wall -s -o $(OUT) $(SRC)
clean:
rm -f $(OUT)