2017-01-23 15:23:28 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/examples/sotest/lib/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
|
2017-01-23 15:23:28 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2017-01-23 15:23:28 +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.
|
2017-01-23 15:23:28 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2017-01-27 22:11:44 +01:00
|
|
|
ALL_SUBDIRS = sotest
|
|
|
|
BUILD_SUBDIRS = sotest
|
|
|
|
|
2017-01-29 20:32:39 +01:00
|
|
|
ifneq ($(CONFIG_MODLIB_MAXDEPEND),0)
|
2017-01-27 22:11:44 +01:00
|
|
|
ALL_SUBDIRS += modprint
|
|
|
|
BUILD_SUBDIRS += modprint
|
|
|
|
endif
|
2017-01-23 15:23:28 +01:00
|
|
|
|
|
|
|
SOTEST_DIR = $(APPDIR)/examples/sotest
|
|
|
|
LIB_DIR = $(SOTEST_DIR)/lib
|
2017-01-30 16:04:01 +01:00
|
|
|
FSROOT_DIR = $(LIB_DIR)/fsroot
|
2017-01-27 18:41:53 +01:00
|
|
|
SYMTAB_SRC = $(LIB_DIR)/sot_symtab.c
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
ifeq ($(CONFIG_EXAMPLES_SOTEST_BUILTINFS),y)
|
|
|
|
ROMFS_IMG = $(LIB_DIR)/romfs.img
|
2020-05-14 05:32:35 +02:00
|
|
|
ROMFS_SRC = $(LIB_DIR)/romfs.c
|
2020-03-23 18:40:44 +01:00
|
|
|
endif
|
|
|
|
|
2017-01-23 15:23:28 +01:00
|
|
|
define DIR_template
|
2020-03-17 11:16:22 +01:00
|
|
|
$(1)_$(2):
|
2020-03-23 18:40:44 +01:00
|
|
|
+$(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" FSROOT_DIR="$(FSROOT_DIR)" CROSSDEV=$(CROSSDEV)
|
2017-01-23 15:23:28 +01:00
|
|
|
endef
|
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
all: $(ROMFS_SRC) $(SYMTAB_SRC)
|
2020-03-23 18:40:44 +01:00
|
|
|
.PHONY: all clean install
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
$(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean)))
|
|
|
|
$(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),install)))
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2017-01-30 16:04:01 +01:00
|
|
|
# Install each program in the fsroot directory
|
2017-01-23 15:23:28 +01:00
|
|
|
|
|
|
|
install: $(foreach DIR, $(BUILD_SUBDIRS), $(DIR)_install)
|
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
ifeq ($(CONFIG_EXAMPLES_SOTEST_BUILTINFS),y)
|
2017-01-30 16:04:01 +01:00
|
|
|
# Create the romfs.img file from the populated fsroot directory
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
$(ROMFS_IMG): install
|
|
|
|
$(Q) genromfs -f $@.tmp -d $(FSROOT_DIR) -V "SOTESTTEST"
|
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@)
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
# Create the romfs.c file from the romfs.img file
|
2017-01-23 15:23:28 +01:00
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
$(ROMFS_SRC): $(ROMFS_IMG)
|
2022-01-27 15:32:39 +01:00
|
|
|
$(Q) (cd $(LIB_DIR) && echo "#include <nuttx/compiler.h>" >$@ && \
|
|
|
|
xxd -i romfs.img | sed -e "s/^unsigned char/const unsigned char aligned_data(4)/g" >>$@)
|
2017-01-30 16:04:01 +01:00
|
|
|
endif
|
2017-01-23 15:23:28 +01:00
|
|
|
|
|
|
|
# Create the exported symbol table
|
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
$(SYMTAB_SRC): install
|
2020-05-23 14:46:57 +02:00
|
|
|
$(Q) $(APPDIR)$(DELIM)tools$(DELIM)mksymtab.sh $(FSROOT_DIR) g_sot | sed "/modprint/d" >$@.tmp
|
2020-03-23 18:40:44 +01:00
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@)
|
2017-01-23 15:23:28 +01:00
|
|
|
|
|
|
|
# Clean each subdirectory
|
|
|
|
|
|
|
|
clean: $(foreach DIR, $(ALL_SUBDIRS), $(DIR)_clean)
|
2020-05-14 05:32:35 +02:00
|
|
|
$(Q) rm -f $(ROMFS_SRC) $(ROMFS_IMG) $(SYMTAB_SRC)
|
2017-01-30 16:04:01 +01:00
|
|
|
$(Q) rm -rf $(FSROOT_DIR)
|