]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/Makefile.sol2
A couple of fixes:
[ppp.git] / pppd / Makefile.sol2
index fa52c8ec2507be09ed4bd3b2c45dd15d33cbd2c9..8bb0925edc8827a779f0aa08c101ccfc33aebebc 100644 (file)
@@ -1,27 +1,28 @@
 #
 # Makefile for pppd under Solaris 2.
-# $Id: Makefile.sol2,v 1.6 1996/05/28 00:54:22 paulus Exp $
+# $Id: Makefile.sol2,v 1.14 1999/09/21 20:37:20 masputra Exp $
 #
 
-BINDIR = /usr/local/bin
-MANDIR = /usr/local/man
+include ../svr4/Makedefs
 
-CC = gcc
-COPTS = -g -O2
-LIBS = -lsocket -lnsl
+COPTS  += -xO2 -xspace -W0,-Lt
+CFLAGS =  -I../include -DSVR4 -DSOL2 $(COPTS)
+LIBS   = -lsocket -lnsl
 
-# For Sun cc
-#COPTS = -g -O -Xa -w
+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
 
-CFLAGS = $(COPTS) -I.. -DSVR4
-
-INSTALL = /usr/sbin/install
+#
+# uncomment the following to enable plugins
+#
+CFLAGS += -DPLUGIN
+LIBS   += -ldl
 
+#
+# Make targets
+#
 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 sys-svr4.o
-
 pppd:  $(OBJS)
        $(CC) -o pppd $(OBJS) $(LIBS)