CURRENTDIR	= #SRC:DM:MONSEL:
ASCALM		= sh ascalm/z/o
SOURCE		= monsel
TARGET		= sma_$(SOURCE).lib

.PHONY: clean
.PHONY: all

all:	#bin:$(TARGET)

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

$(TARGET): \
		monsel.asl \
		#ref:smaky.ref #ref:monsel.ref #ref:dolib.ref \
		#ref:hwdis.ref #ref:displayman.ref \
		makefile
	@$(ASCALM) $(SOURCE).asl $(SOURCE)/l/h $(TARGET)/b

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

include #src:include.mak

