aboutsummaryrefslogtreecommitdiff
path: root/unix/Makefile
diff options
context:
space:
mode:
authorDamien2013-12-17 18:33:53 +0000
committerDamien2013-12-17 18:33:53 +0000
commit0f08267fa43b3abe9add4ab9ff5822a273fbeba1 (patch)
treec6442c54bc5a463a45770fa6d723ea937f4e6e29 /unix/Makefile
parent660365e14c7205581f38cf61923a7a88a84f893f (diff)
unix: include obj.h, and build additional py files.
Diffstat (limited to 'unix/Makefile')
-rw-r--r--unix/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 5b2628221..8c59b5b3f 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -2,7 +2,7 @@ PYSRC=../py
BUILD=build
CC = gcc
-CFLAGS = -I. -I$(PYSRC) -Wall -ansi -std=gnu99 -Os #-DNDEBUG
+CFLAGS = -I. -I$(PYSRC) -Wall -Werror -ansi -std=gnu99 -Os #-DNDEBUG
LDFLAGS = -lm
SRC_C = \
@@ -29,6 +29,9 @@ PY_O = \
emitnthumb.o \
emitinlinethumb.o \
runtime.o \
+ map.o \
+ obj.o \
+ builtin.o \
vm.o \
showbc.o \
repl.o \