0

我找到了一些将文本文件编译为字符串变量的东西:代码:

objcopy --input binary --output elf64-x86-64 --binary-architecture i386 test.txt test.o

我想为每个 ./included_text/*.abc 然后每个这些文件链接。我已经找到了构建前/构建后的步骤,但找不到任何对我有帮助的东西。或者,如果更容易,您可以解释如何制作整个 makefile。

4

1 回答 1

0
output:

text_files:= $(wildcard *.txt)

text_objects:=$(addsuffix .o,$(basename $(text_files)))
objects=$(text_objects) $(other_objects)


%.o: %.txt
    objcopy --input binary $(OBJCOPY_FLAGS) $< $@

output: $(objects)
    echo linking $@ from $^
    #ld ....
于 2011-01-12T23:06:57.333 回答