1
0
Fork 0
mirror of https://github.com/pnx/m16vm synced 2026-06-16 03:44:55 +02:00

Makefile: remove old compile flags.

This commit is contained in:
Henrik Hautakoski 2019-01-29 14:10:27 +01:00
parent c27029001e
commit c271fb7aaa
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -7,16 +7,10 @@
# * MEM_SIZE=<value>
# 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)