conserver/conserver.cf/Makefile.in

33 lines
728 B
Makefile
Raw Normal View History

2001-02-19 06:50:29 +00:00
### Path settings
srcdir = @srcdir@
prefix = @prefix@
mandir = @mandir@
sysconfdir = @sysconfdir@
2004-01-18 17:31:24 +00:00
exampledir = @datadir@/examples/conserver
2001-02-19 06:50:29 +00: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-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
2003-09-22 20:49:53 +00:00
$(MKDIR) $(DESTDIR)$(exampledir)
$(INSTALL) -m 0644 conserver.cf $(DESTDIR)$(exampledir)
$(INSTALL) -m 0644 conserver.passwd $(DESTDIR)$(exampledir)
2001-02-19 06:50:29 +00:00
2001-07-27 00:05:04 +00:00
.PHONY: clean distclean install