X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.sol2;h=835acc215091394d65e1b3bba544b7f248c7f2b7;hp=3802760ed57be9998eb92ac9a1c19b5ebed0bec0;hb=3f2fe49d822135c209e9896f666b748cf2234f2e;hpb=6f099903b36ddcca0a85753549dad910e47a9734 diff --git a/pppd/Makefile.sol2 b/pppd/Makefile.sol2 index 3802760..835acc2 100644 --- a/pppd/Makefile.sol2 +++ b/pppd/Makefile.sol2 @@ -1,17 +1,41 @@ # # Makefile for pppd under Solaris 2. -# $Id: Makefile.sol2,v 1.10 1998/03/25 01:27:05 paulus Exp $ +# $Id: Makefile.sol2,v 1.18 2000/04/13 12:05:57 paulus Exp $ # include ../svr4/Makedefs -CFLAGS = -DSVR4 -I../include $(COPTS) -LIBS = -lsocket -lnsl +COPTS += -xO2 -xspace -W0,-Lt +CFLAGS = -I../include -DSVR4 -DSOL2 $(COPTS) +LIBS = -lsocket -lnsl -all: pppd +OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o \ + ccp.o auth.o options.o demand.o utils.o sys-svr4.o tdb.o + +# +# uncomment the following to enable plugins +# +CFLAGS += -DPLUGIN +LIBS += -ldl + +# +# Solaris 8 and above accomodates /var/run, so uncomment the +# following to place pppd process IDs on that location +# +#CFLAGS += -D_PATH_VARRUN='"/var/run/"' -OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o \ - auth.o options.o demand.o sys-svr4.o +# +# uncomment the following to enable IPv6 +# +# Solaris 8 and on includes support for IPv6 +# +#CFLAGS += -DINET6 +#OBJS += ipv6cp.o eui64.o + +# +# Make targets +# +all: pppd pppd: $(OBJS) $(CC) -o pppd $(OBJS) $(LIBS)