104 lines
3.3 KiB
Makefile
104 lines
3.3 KiB
Makefile
# Makefile.dist
|
|
#
|
|
# Copyright (c) 1996-2002 Internet Software Consortium.
|
|
# Use is subject to license terms which appear in the file named
|
|
# ISC-LICENSE that should have accompanied this file when you
|
|
# received it. If a file named ISC-LICENSE did not accompany this
|
|
# file, or you are not sure the one you have is correct, you may
|
|
# obtain an applicable copy of the license at:
|
|
#
|
|
# http://www.isc.org/isc-license-1.0.html.
|
|
#
|
|
# This file is part of the ISC DHCP distribution. The documentation
|
|
# associated with this file is listed in the file DOCUMENTATION,
|
|
# included in the top-level directory of this release.
|
|
#
|
|
# Support and other services are available for ISC products - see
|
|
# http://www.isc.org for more information.
|
|
#
|
|
|
|
CATMANPAGES = dhcpd.cat8 dhcpd.conf.cat5 dhcpd.leases.cat5
|
|
SEDMANPAGES = dhcpd.man8 dhcpd.conf.man5 dhcpd.leases.man5
|
|
SRCS = dhcpd.c dhcp.c bootp.c confpars.c db.c class.c failover.c \
|
|
omapi.c mdb.c stables.c salloc.c ddns.c
|
|
OBJS = dhcpd.o dhcp.o bootp.o confpars.o db.o class.o failover.o \
|
|
omapi.o mdb.o stables.o salloc.o ddns.o
|
|
PROG = dhcpd
|
|
MAN = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5
|
|
|
|
INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includes
|
|
DHCPLIB = ../common/libdhcp.a $(BINDLIB) ../omapip/libomapi.a ../dst/libdst.a
|
|
CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS)
|
|
|
|
all: $(PROG) $(CATMANPAGES)
|
|
|
|
install: all
|
|
for dir in $(BINDIR) $(ADMMANDIR) $(FFMANDIR) $(VARDB); do \
|
|
foo=""; \
|
|
for bar in `echo $(DESTDIR)$${dir} |tr / ' '`; do \
|
|
foo=$${foo}/$$bar; \
|
|
if [ ! -d $$foo ]; then \
|
|
mkdir $$foo; \
|
|
chmod 755 $$foo; \
|
|
fi; \
|
|
done; \
|
|
done
|
|
$(INSTALL) dhcpd $(DESTDIR)$(BINDIR)
|
|
$(CHMOD) 755 $(DESTDIR)$(BINDIR)/dhcpd
|
|
$(MANINSTALL) $(MANFROM) dhcpd.$(MANCAT)8 $(MANTO) \
|
|
$(DESTDIR)$(ADMMANDIR)/dhcpd$(ADMMANEXT)
|
|
$(MANINSTALL) $(MANFROM) dhcpd.conf.$(MANCAT)5 $(MANTO) \
|
|
$(DESTDIR)$(FFMANDIR)/dhcpd.conf$(FFMANEXT)
|
|
$(MANINSTALL) $(MANFROM) dhcpd.leases.$(MANCAT)5 $(MANTO) \
|
|
$(DESTDIR)$(FFMANDIR)/dhcpd.leases$(FFMANEXT)
|
|
|
|
depend:
|
|
$(MKDEP) $(INCLUDES) $(PREDEFINES) $(SRCS)
|
|
|
|
clean:
|
|
-rm -f $(OBJS)
|
|
|
|
realclean: clean
|
|
-rm -f $(PROG) $(CATMANPAGES) $(SEDMANPAGES) *~ #*
|
|
|
|
distclean: realclean
|
|
-rm -f Makefile
|
|
|
|
links:
|
|
@for foo in $(SRCS) $(MAN); do \
|
|
if [ ! -b $$foo ]; then \
|
|
rm -f $$foo; \
|
|
fi; \
|
|
ln -s $(TOP)/server/$$foo $$foo; \
|
|
done
|
|
|
|
# These should only be done on 4.4 BSD-based systems, since the mandoc
|
|
# macros aren't available on older unices. Catted man pages are
|
|
# provided in the distribution so that this doesn't become a problem.
|
|
|
|
dhcpd.cat8: dhcpd.man8
|
|
nroff -man dhcpd.man8 >dhcpd.cat8
|
|
|
|
dhcpd.man8: dhcpd.8
|
|
sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \
|
|
-e "s#RUNDIR#$(VARRUN)#g" < dhcpd.8 >dhcpd.man8
|
|
|
|
dhcpd.conf.cat5: dhcpd.conf.man5
|
|
nroff -man dhcpd.conf.man5 >dhcpd.conf.cat5
|
|
|
|
dhcpd.conf.man5: dhcpd.conf.5
|
|
sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \
|
|
-e "s#RUNDIR#$(VARRUN)#g" < dhcpd.conf.5 >dhcpd.conf.man5
|
|
|
|
dhcpd.leases.cat5: dhcpd.leases.man5
|
|
nroff -man dhcpd.leases.man5 >dhcpd.leases.cat5
|
|
|
|
dhcpd.leases.man5: dhcpd.leases.5
|
|
sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \
|
|
-e "s#RUNDIR#$(VARRUN)#g" < dhcpd.leases.5 >dhcpd.leases.man5
|
|
|
|
dhcpd: $(OBJS) $(COBJ) $(DHCPLIB)
|
|
$(CC) $(LFLAGS) -o dhcpd $(OBJS) $(DHCPLIB) $(LIBS)
|
|
|
|
# Dependencies (semi-automatically-generated)
|