# Module specific stuff
MOD_VERSION = .01

# Bastard stuff
RM      = rm -f
CP      = cp -f

ifndef TOP
TOP = ../../../
MOD_INSTALL_DIR = $(TOP)/formats
endif


# --------------------------------------
SRCS = A.bc

# --------------------------------------
all: 

install:  
	@$(CP) $(SRCS) $(MOD_INSTALL_DIR)/

uninstall: 
	@cd $(MOD_INSTALL_DIR) && $(RM) $(SRCS)

clean: 
