This commit is contained in:
2024-03-12 20:52:56 +01:00
parent 80510b1d17
commit 61e230c0a5
9 changed files with 0 additions and 0 deletions

21
lab_3/17_and_18/Makefile Normal file
View File

@@ -0,0 +1,21 @@
binary = sequence-test
folder = sequences-int
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