#!/usr/bin/make -f

# generic Makefile

include .Make.conf

.EXPORT_ALL_VARIABLES:

export BR_CLEAN=1
export PATH:=$(srcdir)/bin:$(srcdir)/sbin:$(srcdir)/sh:$(PATH)
export PERL5LIB:=$(srcdir)/perl:$(PERL5LIB)

build:
	:
clean:
	:
install: build
	instALL

devinst: build
	instALL devinst

uninstall: uninst
uninst: build
	instALL uninst

distclean: clean
	rm .Make.conf

.PHONY: build clean install distclean
