conserver/conserver.cf/Makefile.in

33 lines
734 B
Makefile
Raw Normal View History

2001-02-18 22:50:29 -08:00
### Path settings
srcdir = @srcdir@
prefix = @prefix@
mandir = @mandir@
sysconfdir = @sysconfdir@
2003-09-22 13:49:53 -07:00
exampledir = $(prefix)/share/examples/conserver
2001-02-18 22:50:29 -08:00
### 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-26 17:05:04 -07: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
2003-09-22 13:49:53 -07:00
$(MKDIR) $(DESTDIR)$(exampledir)
$(INSTALL) -m 0644 conserver.cf $(DESTDIR)$(exampledir)
$(INSTALL) -m 0644 conserver.passwd $(DESTDIR)$(exampledir)
2001-02-18 22:50:29 -08:00
2001-07-26 17:05:04 -07:00
.PHONY: clean distclean install