sdk-ameba-v4.0b-gcc/project/realtek_amebaz_va0_example/example_sources/uart/Makefile
Tautvydas Belgeras 60a7afcc83 initial commit
2018-06-05 16:16:17 +03:00

24 lines
684 B
Makefile

.PHONY: all copy clean
#*****************************************************************************#
# Source FILE LIST #
#*****************************************************************************#
CSRC = src inc
#*****************************************************************************#
# RULES TO GENERATE TARGETS #
#*****************************************************************************#
# Define the Rules to build the core targets
all: copy
copy:
for cpf in $(CSRC); do \
cp -rf $$cpf ../..; \
done