CURRENTDIR	= #SRC:LIB:DBOX:
ASCALM		= sh ascalm/z/o
SOURCE		= dbox
TARGET		= sma_$(SOURCE).lib

.PHONY: clean
.PHONY: all

all:	#bin:$(TARGET)

clean:
	@rm $(TARGET) $(SOURCE).lst $(SOURCE).erh

$(TARGET): \
		$(SOURCE).asl \
		#ref:smaky.ref #ref:modules.ref #ref:colors.ref #ref:tcolor.ref \
		..:..:rs:icon.assr ..:..:rs:dbox.assr \
		DBOXTABS.ASI DBOXEXTEND.ASI DBOXIO.ASI DBOXIOEDIT.ASI DBOXIOPATH.ASI \
		DBOXIONTREE.ASI DBOXIOSRC.ASI DBOXICO.ASI DBOXCOLOR.ASI \
		makefile
	@$(ASCALM) $(SOURCE).asl $(SOURCE)/l/h $(TARGET)/b

#bin:$(TARGET): $(TARGET)
	@#:rm #bin:$(TARGET)
	@#:cp $(TARGET) #bin:$(TARGET)

#bin:sma_dbox.color: sma_dbox.color
	@#:rm #bin:sma_dbox.color
	@#:cp sma_dbox.color #bin:sma_dbox.color:

#bin:sma_dboy.color: sma_dboy.color
	@#:rm #bin:sma_dboy.color
	@#:cp sma_dboy.color #bin:sma_dboy.color:

include #src:include.mak

