#!/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)

all: tgz devinst

tgz:
	tgz+ .

devinst: build
	instALL devinst

build:
	:
clean:
	:
install: build
	instALL

uninstall: uninst
uninst: build
	instALL uninst

distclean: clean
	rm .Make.conf Make.conf

.PHONY: build clean install distclean
