nuttx/wireless/Makefile

70 lines
1.8 KiB
Makefile
Raw Normal View History

2016-02-27 00:07:04 +01:00
############################################################################
# wireless/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
# 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
2016-02-27 00:07:04 +01:00
#
# http://www.apache.org/licenses/LICENSE-2.0
2016-02-27 00:07:04 +01: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.
2016-02-27 00:07:04 +01:00
#
############################################################################
include $(TOPDIR)/Make.defs
2016-02-27 00:07:04 +01:00
2016-02-27 00:27:58 +01:00
# Add IEEE 802.15.4 files to the build
include bluetooth/Make.defs
include ieee802154/Make.defs
include pktradio/Make.defs
2016-02-27 00:27:58 +01:00
2016-02-27 00:07:04 +01:00
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
BIN = libwireless$(LIBEXT)
all: $(BIN)
.PHONY: depend clean distclean
2016-02-27 00:07:04 +01:00
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
$(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
$(BIN): $(OBJS)
$(call ARCHIVE, $@, $(OBJS))
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
$(call CATFILE, Make.dep, $^)
$(call DELFILE, $^)
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
$(Q) $(MAKE) makedepfile
$(Q) touch $@
2016-02-27 00:07:04 +01:00
depend: .depend
2016-02-27 00:07:04 +01:00
clean:
$(call DELFILE, $(BIN))
$(call CLEAN)
distclean: clean
$(call DELFILE, Make.dep)
$(call DELFILE, .depend)
2016-02-27 00:07:04 +01:00
-include Make.dep