2014-10-27 14:53:12 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/bas/Makefile
|
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2014-10-27 14:53:12 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-10-27 14:53:12 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2014-10-27 14:53:12 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2014-10-27 14:53:12 +01:00
|
|
|
|
|
|
|
# BAS Library
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
CSRCS = bas.c bas_auto.c bas_fs.c bas_global.c bas_program.c
|
2014-11-11 19:34:00 +01:00
|
|
|
CSRCS += bas_str.c bas_token.c bas_value.c bas_var.c
|
2014-10-28 01:11:56 +01:00
|
|
|
|
2015-05-24 01:08:35 +02:00
|
|
|
ifeq ($(CONFIG_INTERPRETER_BAS_VT100),y)
|
2014-11-11 19:34:00 +01:00
|
|
|
CSRCS += bas_vt100.c
|
2014-11-07 16:06:00 +01:00
|
|
|
endif
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
MAINSRC = bas_main.c
|
2014-10-27 14:53:12 +01:00
|
|
|
|
2014-11-01 23:23:30 +01:00
|
|
|
# BAS built-in application info
|
|
|
|
|
2019-10-06 14:14:39 +02:00
|
|
|
PROGNAME = bas
|
2014-11-06 23:57:17 +01:00
|
|
|
PRIORITY = $(CONFIG_INTERPRETER_BAS_PRIORITY)
|
|
|
|
STACKSIZE = $(CONFIG_INTERPRETER_BAS_STACKSIZE)
|
2019-10-06 14:14:39 +02:00
|
|
|
MODULE = $(CONFIG_INTERPRETERS_BAS)
|
2017-08-13 17:35:14 +02:00
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|