]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/Makefile.sol2
add tty.o to OBJS, fix from James Carlson
[ppp.git] / pppd / Makefile.sol2
index 2cb55805f75681e6dd2a3899f0c483dc793e3704..f1f08a8b18a8ddc257a77ee5ecffc30a5f95f9f3 100644 (file)
@@ -1,17 +1,41 @@
 #
 # Makefile for pppd under Solaris 2.
-# $Id: Makefile.sol2,v 1.11 1999/04/12 06:24:44 paulus Exp $
+# $Id: Makefile.sol2,v 1.20 2001/03/08 05:01:03 paulus Exp $
 #
 
-include ../svr4/Makedefs
+include ../solaris/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 tty.o \
+       ccp.o auth.o options.o demand.o utils.o sys-solaris.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 utils.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)