mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-03-13 00:17:33 +07:00
9 lines
393 B
Makefile
9 lines
393 B
Makefile
PROGRAMS = fastbin_dup tcache_double-free fastbin_dup_into_stack fastbin_dup_consolidate unsafe_unlink house_of_spirit poison_null_byte malloc_playground first_fit house_of_lore overlapping_chunks overlapping_chunks_2 house_of_force unsorted_bin_attack house_of_einherjar house_of_orange
|
|
CFLAGS += -std=c99 -g
|
|
|
|
# CFLAGS += -fsanitize=address
|
|
|
|
all: $(PROGRAMS)
|
|
clean:
|
|
rm -f $(PROGRAMS)
|