X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.NeXT;fp=pppd%2FMakefile.NeXT;h=0000000000000000000000000000000000000000;hp=d35059946c4bea23daba482236071c7914f6d762;hb=5dce043b4b7e32d41598442361736a927a5db5e4;hpb=3e451dfe42426b51e6ce1d66a3e04de43e055568 diff --git a/pppd/Makefile.NeXT b/pppd/Makefile.NeXT deleted file mode 100644 index d350599..0000000 --- a/pppd/Makefile.NeXT +++ /dev/null @@ -1,60 +0,0 @@ -# -# pppd makefile for NeXT -# -# $Original: Makefile.ultrix,v 1.4 1994/09/01 00:40:40 paulus Exp $ -# $Id: Makefile.NeXT,v 1.8 2002/11/02 19:48:12 carlsonj Exp $ -# - -ARCHFLAGS = - -BINDIR = /usr/local/ppp/bin -MANDIR = /usr/local/ppp/man - -OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o eap.o md5.o ccp.o \ - ecp.o auth.o options.o demand.o utils.o sys-NeXT.o tty.o - -# -# For HPPA and SPARC, define FIXSIGS to get around posix bugs in -# OS release 3.2. Problems are supposed to be fixed -# in release 3.3 (but at least for Sparc don't appear to be). -# -# Defining -DHAS_BROKEN_IOCTL fixes problems with the old -# NeXT supplied serial drivers. -# -# Defining -DCHAPMS will enable Eric Rosenquist's extensions for -# Microsoft's propritary CHAP scheme. For all the details, -# see the README.MSCHAP80 file at the top level. -# - -COMPILE_FLAGS = -DNO_DRAND48 \ - -DFIXSIGS -DHAS_BROKEN_IOCTL -DLOCK_BINARY \ - -DLOCK_DIR=\"/usr/spool/uucp/LCK\" - -# -# If you want to use MSCHAP, see the README.MSCHAP80 file. -# Use required you get a separate DES library. If this -# library is installed, uncomment the following. - -#LIBS = -ldes -LIBS = ../NeXT/libposix/libposix.o - - -COPTS = $(ARCHFLAGS) -O -D_POSIX_SOURCE - -CFLAGS = $(COPTS) $(COMPILE_FLAGS) -I../include - - -all: pppd - -pppd: $(OBJS) - $(CC) $(CFLAGS) -o pppd $(OBJS) $(LIBS) - -install: - /bin/mkdirs $(MANDIR)/man8 $(BINDIR) - install -c -s -m 4511 -o root -g daemon pppd $(BINDIR)/pppd - install -c -m 444 -o root -g wheel pppd.8 $(MANDIR)/man8 - - -clean: - rm -f $(OBJS) pppd *.o *~ -