在创建操作系统时使用makefile

时间:2017-03-15 18:18:05

标签: makefile operating-system

(我是编程和本网页的新手)

我理解Linux有Makefile(我将开始创建Os)但是我无法找到如何在windows中制作makefile任何建议(我不想下载任何东西)

thnx for your answers

1 个答案:

答案 0 :(得分:0)

我认为你不能简单地从notepad ++中复制代码,因为有些字符是不可打印的,你可以复制(\ n,BELL,NULL等)。 但是,如果你编写一个python脚本来以二进制模式(“rb”)读取文件,那么你可以成功地完成它(我是根据经验说的)。

编辑: 如果您感兴趣,这是复制文件的python脚本:

INPUT_FILE = "C:/input.exe" # change it to the path of your existing file
OUTPUT_FILE = "C:/output.exe" # change it to the path of where you want your new file
input = open(INPUT_FILE, "rb")
data = input.read()
input.close()
output = open(OUTPUT_FILE, "wb")
output.write(data)
output.close()