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

33 lines
609 B
Makefile
Raw Normal View History

# $Id: Makefile.in,v 1.3 2002/09/13 06:50:06 fishwaldo Exp $
2002-08-13 14:34:25 +00:00
# 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; \
2002-08-13 14:34:25 +00:00
fi
@for header in *.h; do \
${INSTALL_DATA} $$header $(prefix)/include/NeoIRCd; \
2002-08-13 14:34:25 +00:00
done
distclean:
${RM} -f Makefile