mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
481 B
29 lines
481 B
#
|
|
# Copy shared source code.
|
|
#
|
|
|
|
SHARED_DIR=..\core
|
|
|
|
$(O)\init.c : $(SHARED_DIR)\init.c
|
|
copy $? $@
|
|
|
|
$(O)\serial.c : $(SHARED_DIR)\serial.c
|
|
copy $? $@
|
|
|
|
$(O)\memmgr.c : $(SHARED_DIR)\memmgr.c
|
|
copy $? $@
|
|
|
|
$(O)\valid.c : $(SHARED_DIR)\valid.c
|
|
copy $? $@
|
|
|
|
$(O)\comc.c : $(SHARED_DIR)\comc.c
|
|
copy $? $@
|
|
|
|
$(O)\inifile.c : $(SHARED_DIR)\inifile.c
|
|
copy $? $@
|
|
|
|
$(O)\resstr.c : $(SHARED_DIR)\resstr.c
|
|
copy $? $@
|
|
|
|
$(O)\debug.c : $(SHARED_DIR)\debug.c
|
|
copy $? $@
|