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