mirror of
https://github.com/taubel/sdk-ameba-v4.0b-gcc.git
synced 2026-04-05 21:15:23 +00:00
24 lines
684 B
Makefile
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
|
|
|
|
|
|
|