# template for Makefile
# $Id: Makefile.txt,v 1.1 2000/09/06 11:01:53 takepiro Exp $
# Copyright (C) TOYODA Eizi, 1998, 1999.  All rights reserved.
# see COPYING.TXT for terms of license.

SRCUNIX	= dcbib.unx
SRCDOS	= dcbib.dos
TARGETS	= dcbib.conf

all: $(TARGETS)

$(TARGETS):
-u	cat $(SRCUNIX) > $@
-d	cat $(SRCUDOS) > $@

clean:
	-rm -f *.bak *~
	-rm -f $(TARGETS)

clean.dist: clean

install: all
	for file in $(TARGETS) ;\
	do \
		$(INSTALLFILE) $$file $(DESTDIR)$(ETCDIR) ;\
	done

config:
	//..// $(MAKE) config

