mirror of
https://github.com/bstansell/conserver.git
synced 2025-03-14 08:16:41 +00:00
29 lines
458 B
Makefile
29 lines
458 B
Makefile
|
### 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:
|
||
|
|
||
|
.PHONY: clean distclean install
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *.o $(ALL) core
|
||
|
|
||
|
distclean: clean
|
||
|
rm -f Makefile
|
||
|
|
||
|
install:
|
||
|
$(MKDIR) $(DESTDIR)$(mandir)/man8
|
||
|
$(INSTALL) conserver.cf.man $(DESTDIR)$(mandir)/man8/conserver.cf.8
|
||
|
|