Project

General

Profile

Actions

Bug #94

closed

CASLアセンブラのMakefile

Added by Kazuyoshi Kouno over 3 years ago. Updated over 3 years ago.

Status:
Closed
Priority:
Low
Start date:
07/04/2021
Due date:
07/07/2021
% Done:

100%

Estimated time:
0.00 h
Spent time:

Description

assemble:assemble_main.o opecode_store.o label_check.o assemble_out.o


asm:assemble_main.o opecode_store.o label_check.o assemble_out.o

とすべきです。
また、ヘッダーファイルも依存ターゲットに含めるべきです。
Actions #1

Updated by Yuma Yasutani over 3 years ago

  • Status changed from New to In Progress
  • % Done changed from 0 to 100
Actions #2

Updated by Yuma Yasutani over 3 years ago

  • Status changed from In Progress to Resolved
  • Assignee changed from Yuma Yasutani to Kazuyoshi Kouno

assemble から asm へと変更しました。
また、各ファイルで使用しているヘッダファイルを依存ターゲットに含めました。

asm:assemble_main.o opecode_store.o label_check.o assemble_out.o
gcc assemble_main.o opecode_store.o label_check.o assemble_out.o -o asm

assemble_main.o:assemble_main.c opecode_store.h assemble_main.h assemble_decl.h
gcc -Wall -c assemble_main.c

opecode_store.o:opecode_store.c opecode_store.h assemble_main.h
gcc -Wall -c opecode_store.c

label_check.o:label_check.c assemble_main.h
gcc -Wall -c label_check.c

assemble_out.o:assemble_out.c assemble_main.h
gcc -Wall -c assemble_out.c

Actions #3

Updated by Kazuyoshi Kouno over 3 years ago

  • Status changed from Resolved to Closed

ターゲットが、asm に変更されていること, ヘッダーファイルが依存ターゲットに含まれていること、を確認した。

Actions

Also available in: Atom PDF