#### アセンブラ・ローダ・コンパイラ・変換ツール定義
SOUND_DIR = out_sound/
include ./out_sound/Soundfiles

TARGET_ARC = libsound.a

$(TARGET_ARC): $(SOUND_FILES) Makefile
	ar cr $@ $(SOUND_FILES)

clean:
	rm -f $(TARGET_ARC)
	rm -f $(SOUND_DIR)*.o