conserver/conserver.cf/Makefile.in

29 lines
534 B
Makefile
Raw Normal View History

2001-02-19 06:50:29 +00:00
### Path settings
srcdir = @srcdir@
prefix = @prefix@
mandir = @mandir@
sysconfdir = @sysconfdir@
### Installation programs and flags
INSTALL = @INSTALL@
MKDIR = @MKDIR@
@SET_MAKE@
### Makefile rules - no user-servicable parts below
all:
clean:
rm -f *~ *.o $(ALL) core
distclean: clean
rm -f Makefile
install:
2001-07-27 00:05:04 +00:00
$(MKDIR) $(DESTDIR)$(mandir)/man5
$(INSTALL) conserver.cf.man $(DESTDIR)$(mandir)/man5/conserver.cf.5
$(INSTALL) conserver.passwd.man $(DESTDIR)$(mandir)/man5/conserver.passwd.5
2001-02-19 06:50:29 +00:00
2001-07-27 00:05:04 +00:00
.PHONY: clean distclean install