diff options
author | midipix <writeonce@midipix.org> | 2018-11-22 22:29:54 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-22 23:55:31 -0500 |
commit | 8f53acc8ecf66aca6367b372a0f83a568d11f485 (patch) | |
tree | a91fbee79c59ac5e3597ad03b8b030370008b3c5 | |
parent | e99c09999aefad120e281244aa0389bf1711dc04 (diff) | |
download | sbpython2-8f53acc8ecf66aca6367b372a0f83a568d11f485.tar.bz2 sbpython2-8f53acc8ecf66aca6367b372a0f83a568d11f485.tar.xz |
project: defined APP_SRCS, configured front-end executable accordingly.
-rw-r--r-- | config.project | 4 | ||||
-rw-r--r-- | project/common.mk | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/config.project b/config.project index b34b5c3..526a4cd 100644 --- a/config.project +++ b/config.project @@ -66,7 +66,7 @@ mb_default_elf_config_defs= # config mb_all_static= -mb_all_shared= -mb_disable_frontend=yes +mb_all_shared=yes +mb_disable_frontend=no mb_disable_static=yes mb_disable_shared= diff --git a/project/common.mk b/project/common.mk index 0f3c32b..ba3493c 100644 --- a/project/common.mk +++ b/project/common.mk @@ -138,6 +138,7 @@ PYTHON_SRCS = \ Python/traceback.c \ APP_SRCS = \ + Modules/python.c \ COMMON_SRCS = \ $(DYNLOAD_SRCS) \ |