2013-01-10 22:39:57 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/examples/posix_spawn/filesystem/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
|
2013-01-10 22:39:57 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-10 22:39:57 +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.
|
2013-01-10 22:39:57 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2013-01-10 22:39:57 +01:00
|
|
|
|
|
|
|
SPAWN_DIR = $(APPDIR)$(DELIM)examples$(DELIM)posix_spawn
|
|
|
|
FILESYSTEM_DIR = $(SPAWN_DIR)$(DELIM)filesystem
|
|
|
|
ROMFS_DIR = $(FILESYSTEM_DIR)$(DELIM)romfs
|
|
|
|
ROMFS_IMG = $(FILESYSTEM_DIR)$(DELIM)romfs.img
|
2020-05-14 05:32:35 +02:00
|
|
|
ROMFS_SRC = $(FILESYSTEM_DIR)$(DELIM)romfs.c
|
2013-01-10 22:39:57 +01:00
|
|
|
SYMTAB_SRC = $(FILESYSTEM_DIR)$(DELIM)symtab.c
|
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
all: $(ROMFS_SRC) $(SYMTAB_SRC)
|
2020-03-23 18:40:44 +01:00
|
|
|
.PHONY: all hello/hello redirect/redirect clean
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2013-01-11 17:53:44 +01:00
|
|
|
# Build the hello test program
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2013-01-11 20:08:51 +01:00
|
|
|
hello/hello:
|
2013-01-11 17:53:44 +01:00
|
|
|
$(Q) $(MAKE) -C hello hello TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2013-01-11 17:53:44 +01:00
|
|
|
# Build the redirection test program
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2013-01-11 20:08:51 +01:00
|
|
|
redirect/redirect:
|
2013-01-11 17:53:44 +01:00
|
|
|
$(Q) $(MAKE) -C redirect redirect TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
|
|
|
|
2013-01-11 20:08:51 +01:00
|
|
|
# Create the romfs.img file from the romfs directory
|
2018-03-25 17:39:18 +02:00
|
|
|
# REVISIT: ELF binaries should be stripped so that they are not so big
|
2013-01-11 17:53:44 +01:00
|
|
|
|
2020-03-23 18:40:44 +01:00
|
|
|
$(ROMFS_IMG): hello/hello redirect/redirect testdata.txt
|
2013-01-11 17:53:44 +01:00
|
|
|
$(Q) $(MAKE) -C hello install TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
|
|
|
$(Q) $(MAKE) -C redirect install TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
2013-03-03 22:41:21 +01:00
|
|
|
$(Q) install -m 0644 testdata.txt $(ROMFS_DIR)/testdata.txt
|
2020-03-23 18:40:44 +01:00
|
|
|
$(Q) genromfs -f $@.tmp -d $(ROMFS_DIR) -V "POSIXSPAWN"
|
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@)
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
# Create the romfs.c file from the romfs.img file
|
2013-01-10 22:39:57 +01:00
|
|
|
|
2020-05-14 05:32:35 +02:00
|
|
|
$(ROMFS_SRC): $(ROMFS_IMG)
|
|
|
|
$(Q) (cd $(FILESYSTEM_DIR); xxd -i romfs.img | sed -e "s/^unsigned/const unsigned/g" >$@)
|
2013-01-10 22:39:57 +01:00
|
|
|
|
|
|
|
# Create the exported symbol table
|
|
|
|
|
2020-01-21 15:45:32 +01:00
|
|
|
$(SYMTAB_SRC): $(ROMFS_IMG)
|
2020-05-23 14:46:57 +02:00
|
|
|
$(Q) $(APPDIR)$(DELIM)tools$(DELIM)mksymtab.sh $(ROMFS_DIR) g_spawn >$@.tmp
|
2020-03-22 15:19:20 +01:00
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@)
|
2013-01-10 22:39:57 +01:00
|
|
|
|
|
|
|
# Clean each subdirectory
|
|
|
|
|
|
|
|
clean:
|
2013-01-11 17:53:44 +01:00
|
|
|
$(Q) $(MAKE) -C hello clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
|
|
|
$(Q) $(MAKE) -C redirect clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)"
|
2020-05-14 05:32:35 +02:00
|
|
|
$(Q) rm -f $(ROMFS_SRC) $(ROMFS_IMG) $(SYMTAB_SRC)
|
2013-01-10 22:39:57 +01:00
|
|
|
$(Q) rm -rf $(ROMFS_DIR)
|