langcmp/cpp/Makefile

14 lines
147 B
Makefile
Raw Permalink Normal View History

2023-08-24 08:50:56 +02:00
CPP := g++
SRC = sleeptest.cpp
OUT = sleeptest
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
$(CPP) -Wall -s -o $(OUT) $(SRC)
clean:
rm -f $(OUT)