This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/include/Makefile.in
fishwaldo 580ea66a45 Wow. HUGE update. Update all headers to reflect NeoIRCD. aliases for services implemented
config file parsing updated, and modified example.conf to be compatible.
2002-09-13 06:50:09 +00:00

32 lines
609 B
Makefile

# $Id: Makefile.in,v 1.3 2002/09/13 06:50:06 fishwaldo Exp $
# makefile for include/
INSTALL= @INSTALL@
INSTALL_DATA= @INSTALL_DATA@
INSTALL_BIN= @INSTALL_PROGRAM@
RM= @RM@
prefix= @prefix@
exec_prefix= @exec_prefix@
bindir= @bindir@
sysconfdir= @sysconfdir@
all:
build:
clean:
depend:
lint:
install:
@echo installing header files...
-@if test ! -d $(prefix)/include; then \
echo "mkdir $(prefix)/include"; \
mkdir $(prefix)/include; \
mkdir $(prefix)/include/NeoIRCd; \
fi
@for header in *.h; do \
${INSTALL_DATA} $$header $(prefix)/include/NeoIRCd; \
done
distclean:
${RM} -f Makefile