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

14 lines
147 B
Makefile

CPP := g++
SRC = sleeptest.cpp
OUT = sleeptest
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
$(CPP) -Wall -s -o $(OUT) $(SRC)
clean:
rm -f $(OUT)