2017-01-27 22:11:44 +01:00
|
|
|
############################################################################
|
|
|
|
# examples/sotest/lib/modprint/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-27 22:11:44 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2017-01-27 22:11:44 +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-27 22:11:44 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2017-01-27 22:11:44 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_EXAMPLES_SOTEST_LIBGCC),y)
|
|
|
|
LIBGCC = "${shell $(CC) $(ARCHCPUFLAGS) -print-libgcc-file-name 2>/dev/null}"
|
|
|
|
ifneq ($(LIBGCC),)
|
|
|
|
LDLIBPATH += -L "${shell dirname $(LIBGCC)}"
|
|
|
|
LDLIBS += -lgcc
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_EXAMPLES_SOTEST_LIBC),y)
|
|
|
|
LDMODULEFLAGS += -Bstatic
|
|
|
|
LDLIBPATH += -L $(NUTTXLIB)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_EXAMPLES_SOTEST_LIBC),y)
|
|
|
|
LDLIBS += -lc
|
|
|
|
endif
|
|
|
|
|
|
|
|
BIN = modprint
|
|
|
|
|
|
|
|
SRCS = $(BIN).c
|
|
|
|
OBJS = $(SRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
all: $(BIN)
|
2020-03-23 18:40:44 +01:00
|
|
|
.PHONY: all clean install
|
2017-01-27 22:11:44 +01:00
|
|
|
|
|
|
|
$(OBJS): %$(OBJEXT): %.c
|
2020-03-26 09:06:24 +01:00
|
|
|
@echo "MODULECC: $<"
|
|
|
|
$(Q) $(MODULECC) -c $(CMODULEFLAGS) $< -o $@
|
2017-01-27 22:11:44 +01:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2020-03-26 09:06:24 +01:00
|
|
|
@echo "MODULELD: $<"
|
|
|
|
$(Q) $(MODULELD) $(LDMODULEFLAGS) $(LDLIBPATH) -o $@ $(ARCHCRT0OBJ) $^ $(LDLIBS)
|
2017-01-27 22:11:44 +01:00
|
|
|
|
2020-03-16 10:12:16 +01:00
|
|
|
$(FSROOT_DIR)/$(BIN): $(BIN)
|
|
|
|
$(Q) mkdir -p $(FSROOT_DIR)
|
|
|
|
$(Q) install $(BIN) $(FSROOT_DIR)/$(BIN)
|
|
|
|
|
|
|
|
install: $(FSROOT_DIR)/$(BIN)
|
|
|
|
|
2017-01-27 22:11:44 +01:00
|
|
|
clean:
|
|
|
|
$(call DELFILE, $(BIN))
|
|
|
|
$(call CLEAN)
|