include ../../build/cyborn.mk


#separate functions into individual files so that during linking only the
# needed files are linked in - saves space

OBJFILES =  \
            sfx_tone.o \


libsfx.a: $(OBJFILES) makefile
	$(TOOLPATH)ar.exe -rcs $@ $(OBJFILES)
	cp $@ $(LIBPATH)

clean:
	rm $(OBJFILES) *.a


