Initial commit.

This commit is contained in:
2022-05-03 14:06:05 +02:00
commit b5c13fd836
6 changed files with 75 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
CPP=g++
EXEC := 00-const-vars/const.exe 00-const-vars/no-const.exe
all: $(EXEC)
%.exe: %.cpp
g++ $< -o $@
clean:
$(RM) $(EXEC)