Replies: 1 comment
-
You can add a simple: ../path/to/file
cp $< . |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am the new developer. one thing that I want to do is copy project's library file and header file of the library dependencies:
And I need to complete this build by makefile(GNU Makefile)
ex:
-ProjectA
--inc
--ProjectA_API.h
--ProjectA_Type.h
--lib
--Release
--ProjectA.a
-Main
--bin
--src
Makefile
How can I complete this build project task by makfile to copy the library dependencies?
does it use many make variables(ex: PROJECRT_NAME, PROJECT_HOME) or makefile.include to write the makefile?
Becasue I can use post-build and write the batch file to copy all project's library file and header file, it will copy the library not included in this project.
ex:
for /R C:\usr\xtensa\AAA %%f in (*.a) do copy "%%f" C:\usr\xtensa\AAA\
Beta Was this translation helpful? Give feedback.
All reactions