diff options
author | Keith Packard <keithp@keithp.com> | 2012-12-07 22:49:34 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-12-07 22:49:34 -0800 |
commit | cf47efdc86f0b421fcf4389669fbecf6fa3f5934 (patch) | |
tree | f55f13219282c62d235ca9a52283b6dd9e227685 | |
parent | 4339d5c8e6373119e5377fe5c883b6b0e6ce37f6 (diff) |
altos: Stop including profiling and stack guard code in megametrum
These take CPU time and memory and are intended only for debugging
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/megametrum-v0.1/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/megametrum-v0.1/Makefile b/src/megametrum-v0.1/Makefile index 25d0ed03..a5fdcbb2 100644 --- a/src/megametrum-v0.1/Makefile +++ b/src/megametrum-v0.1/Makefile @@ -37,12 +37,12 @@ INC = \ #PROFILE=ao_profile.c #PROFILE_DEF=-DAO_PROFILE=1 -SAMPLE_PROFILE=ao_sample_profile.c \ - ao_sample_profile_timer.c -SAMPLE_PROFILE_DEF=-DHAS_SAMPLE_PROFILE=1 +#SAMPLE_PROFILE=ao_sample_profile.c \ +# ao_sample_profile_timer.c +#SAMPLE_PROFILE_DEF=-DHAS_SAMPLE_PROFILE=1 -STACK_GUARD=ao_mpu_stm.c -STACK_GUARD_DEF=-DHAS_STACK_GUARD=1 +#STACK_GUARD=ao_mpu_stm.c +#STACK_GUARD_DEF=-DHAS_STACK_GUARD=1 ALTOS_SRC = \ ao_interrupt.c \ |