mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-22 09:14:15 +00:00
03e74a8e50
motify compile link error
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
|
|
include $(MAKE_INCLUDE_GEN)
|
|
|
|
.PHONY: all clean
|
|
|
|
#*****************************************************************************#
|
|
# Object FILE LIST #
|
|
#*****************************************************************************#
|
|
OBJS =
|
|
|
|
|
|
#*****************************************************************************#
|
|
# Dependency #
|
|
#*****************************************************************************#
|
|
-include $(OBJS:.o=.d)
|
|
|
|
#*****************************************************************************#
|
|
# RULES TO GENERATE TARGETS #
|
|
#*****************************************************************************#
|
|
|
|
# Define the Rules to build the core targets
|
|
all: CORE_TARGETS
|
|
make -C src all
|
|
|
|
#*****************************************************************************#
|
|
# GENERATE OBJECT FILE
|
|
#*****************************************************************************#
|
|
CORE_TARGETS: $(OBJS)
|
|
|