Różne programy na zajęcia laboratoryjne z AK2
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile 88B

12345678910
  1. hex: hex.o
  2. ld hex.o -o hex
  3. hex.o: hex.s
  4. as hex.s -o hex.o
  5. all: hex
  6. clean:
  7. rm hex