makefile.address-sanitizer 241 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 all: testvalgrind1 testvalgrind2 testvalgrind1: testvalgrind1.c gcc -g -fsanitize=undefined -Wall $< -o $@ testvalgrind2: testvalgrind2.c gcc -g -fsanitize=undefined -Wall $< -o $@ .PHONY: clean clean: -rm testvalgrind1 testvalgrind2