makefile.dist
来自「open source dhcp server client etc...」· DIST 代码 · 共 104 行
DIST
104 行
# Makefile.dist## Copyright (c) 1996-1999 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.cat5SEDMANPAGES = dhcpd.man8 dhcpd.conf.man5 dhcpd.leases.man5SRCS = dhcpd.c dhcp.c bootp.c confpars.c db.c class.c failover.c \ omapi.c mdb.c stables.c salloc.c ddns.cOBJS = dhcpd.o dhcp.o bootp.o confpars.o db.o class.o failover.o \ omapi.o mdb.o stables.o salloc.o ddns.oPROG = dhcpdMAN = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includesDHCPLIB = ../common/libdhcp.a $(BINDLIB) ../omapip/libomapi.a ../dst/libdst.aCFLAGS = $(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 Makefilelinks: @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.cat8dhcpd.man8: dhcpd.8 sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \ -e "s#RUNDIR#$(VARRUN)#g" < dhcpd.8 >dhcpd.man8dhcpd.conf.cat5: dhcpd.conf.man5 nroff -man dhcpd.conf.man5 >dhcpd.conf.cat5dhcpd.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.man5dhcpd.leases.cat5: dhcpd.leases.man5 nroff -man dhcpd.leases.man5 >dhcpd.leases.cat5dhcpd.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.man5dhcpd: $(OBJS) $(COBJ) $(DHCPLIB) $(CC) $(LFLAGS) -o dhcpd $(OBJS) $(DHCPLIB) $(LIBS)# Dependencies (semi-automatically-generated)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?