2014-09-04 23:54:51 +02:00
|
|
|
############################################################################
|
|
|
|
# apps/import/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-09-04 23:54:51 +02:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-09-04 23:54:51 +02: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-09-04 23:54:51 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2014-09-04 23:54:51 +02:00
|
|
|
|
|
|
|
# Sub-directories from the NuttX export package
|
|
|
|
|
2019-10-01 15:51:01 +02:00
|
|
|
SUBDIRS = arch include libs scripts startup tmp tools
|
2018-07-15 19:21:53 +02:00
|
|
|
FILES = .config System.map User.map
|
2014-09-04 23:54:51 +02:00
|
|
|
|
2019-10-01 15:28:58 +02:00
|
|
|
all:
|
2020-07-16 14:29:35 +02:00
|
|
|
.PHONY: context register depend clean distclean
|
2014-09-04 23:54:51 +02:00
|
|
|
|
2020-06-30 15:20:29 +02:00
|
|
|
install:
|
2014-09-06 16:00:47 +02:00
|
|
|
|
2014-09-04 23:54:51 +02:00
|
|
|
context:
|
|
|
|
|
2020-07-16 14:29:35 +02:00
|
|
|
register:
|
|
|
|
|
2014-09-04 23:54:51 +02:00
|
|
|
depend:
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
|
|
|
distclean:
|
|
|
|
$(foreach SDIR, $(SUBDIRS), $(call DELDIR, $(SDIR)))
|
2014-09-05 15:39:04 +02:00
|
|
|
$(foreach FILE, $(FILES), $(call DELFILE, $(FILE)))
|