Makefile
changeset 2 64777e5b619f
parent 1 4502b1c7346d
     1.1 --- a/Makefile	Wed Oct 30 02:51:12 2024 +0100
     1.2 +++ b/Makefile	Wed Oct 30 22:08:49 2024 +0100
     1.3 @@ -31,10 +31,10 @@
     1.4  
     1.5  run: $(BIN)
     1.6  	@echo "\e[1;32mHappy path without exceptions:\e[0m"
     1.7 -	@for bin in $(BIN); do ./$$bin     ; done
     1.8 +	@for bin in $(BIN); do ./$$bin     ; true; done
     1.9  	@echo; echo
    1.10  	@echo "\e[1;32mInterrupted by exceptions:\e[0m"
    1.11 -	@for bin in $(BIN); do ./$$bin fail; done
    1.12 +	@for bin in $(BIN); do ./$$bin fail; true; done
    1.13  
    1.14  $(BIN): $(SRC)
    1.15  	$(CXX) $(CXXFLAGS) -o $(@) $(@).cpp $(LDFLAGS)