change directory names

This commit is contained in:
Pim Kunis 2023-12-04 10:25:33 +01:00
parent 3cff0fc5cf
commit 78b8881016
90 changed files with 0 additions and 0 deletions

16
18/1/2/Makefile Normal file
View file

@ -0,0 +1,16 @@
CXX = g++-7
CC = g++-7
CXXFLAGS = -Wall -Wextra
all: main
main.o: main.cpp
$(CXX) $(CXXFLAGS) -c main.cpp
main: main.o
clean:
rm -f *.o *.h.gch *.exe main
run: all
./main