ASC	= exec ../../../armcc/asmconv.sh
AS	= ../../../armcc/bin/arm-agb-elf-as.exe -EL -mthumb-interwork 
INC	= -I ../. -I ../../.

OBJ 	= 	generator.o\
		sound_mix.o\
		sound_mod.o\
		sound_mod_effekts.o\
		sound_mod_effekts_thumb.o\
		sound_direct.o

all:    $(OBJ)
	
%.o:   %.s 
	$(ASC) $< >temp.s
	$(AS)  temp.s $(INC) -o $@
	
clean:
	rm -rf $(OBJ)	
