This commit is contained in:
2024-03-13 01:52:09 +01:00
parent 9204e48fbc
commit 53309822f7
6 changed files with 3 additions and 0 deletions

21
lab_3/21_and_22/Makefile Normal file
View File

@@ -0,0 +1,21 @@
binary = queens
folder = queens
objects = $(patsubst %.cpp,%.o,$(wildcard *.cpp))
run: $(binary)
./$(binary)
$(binary): $(objects)
g++ -g3 -o $@ $^
%.o: %.cpp
g++ -g3 -c -o $@ $<
clean:
rm -f *.o
clear: clean
rm -f *.zip $(binary)
zip: clean
zip $(folder) Makefile *.cpp *.h