Question:
How to add .doj files in a text file and create a library?
Answer:
To create an archive/library file using multiple .doj files, use the -c switch when invoking archiver from the command line. The command line should include the name of the archive being created and the list of object files to be added in a text file.
Example:
elfar.exe -v -c -i filelist.txt test.dlb
Here:
-v - Print a verbose description of the actions taken by elfar
.dlb - Library file being created
.txt - Text file used as input with the -i switch (list out multiple .doj object files to provide an input to an archiver.)
Note: Refer the format of filelist.txt file from the attached screenshot