Exercise 8.32
This commit is contained in:
11
chp8_memory/mem/Makefile
Normal file
11
chp8_memory/mem/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
CC=gcc
|
||||
CFLAGS=-Wall -o mem
|
||||
SRCS=main.c
|
||||
|
||||
build:
|
||||
$(CC) $(CFLAGS) $(SRCS)
|
||||
debug:
|
||||
$(CC) $(CFLAGS) -fsanitize=address -static-libasan -ggdb $(SRCS)
|
||||
gdb -q mem
|
||||
clean:
|
||||
rm -f mem
|
||||
Reference in New Issue
Block a user