From c271fb7aaaba058446a832891205c63b9dea2984 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 29 Jan 2019 14:10:27 +0100 Subject: [PATCH] Makefile: remove old compile flags. --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index ae3f277..1d7261d 100644 --- a/Makefile +++ b/Makefile @@ -7,16 +7,10 @@ # * MEM_SIZE= # Defines the memory size of the virtual machine (in bytes) # -# * M16_DEBUG_MEM -# Prints memory after program execution. -# -# * M16_DEBUG_REG -# Prints register values after program execution. -# # * M16_DEBUG_INSTR # Outputs the instructions executed in a human-readable format. # -# Example: make EXT_CFLAGS="-DM16_DEBUG_INSTR -DM16_DEBUG_MEM" +# Example: make EXT_CFLAGS="-DM16_DEBUG_INSTR -DMEM_SIZE=512" CC = gcc CFLAGS = -Ilib/include $(EXT_CFLAGS) LD = $(CC)