### Path settings
srcdir = .
prefix = /usr
mandir = /usr/share/man
sysconfdir = /etc

### Installation programs and flags
INSTALL = /usr/bin/install -c
MKDIR = mkdir -p -m 755



### Makefile rules - no user-servicable parts below

all:

clean:
	rm -f *~ *.o $(ALL) core

distclean: clean
	rm -f Makefile

install:
	$(MKDIR) $(DESTDIR)$(mandir)/man5
	$(INSTALL) conserver.cf.man $(DESTDIR)$(mandir)/man5/conserver.cf.5
	$(INSTALL) conserver.passwd.man $(DESTDIR)$(mandir)/man5/conserver.passwd.5

.PHONY: clean distclean install
