From: Paul Mackerras Date: Thu, 1 Jun 1995 06:18:48 +0000 (+0000) Subject: Cope with the fact that CVS can't handle symbolic links X-Git-Tag: RELEASE_2_3_6~674 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=582900da7f716dac246e19278e6087bb889baf24;ds=sidebyside Cope with the fact that CVS can't handle symbolic links --- diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/aix4/Makefile b/aix4/Makefile index 0018ff5..57d29cb 100644 --- a/aix4/Makefile +++ b/aix4/Makefile @@ -2,7 +2,7 @@ # Makefile for AIX 4.1 # # -# $Id: Makefile,v 1.2 1995/04/26 04:15:48 paulus Exp $ +# $Id: Makefile,v 1.3 1995/06/01 06:18:11 paulus Exp $ # #ifndef DRIVERS DRIVERS=/usr/lib/drivers @@ -31,8 +31,10 @@ ppp_async: ppp_async.o ppp_comp: ppp_comp.o bsd-comp.o ld -o ppp_comp ppp_comp.o -e pppcomp_load bsd-comp.o ${KIMP} ${NETIMP} ${KLIBS} -vjcompress.o: vjcompress.c -bsd-comp.o: bsd-comp.c +vjcompress.o: ../modules/vjcompress.c + $(CC) $(CFLAGS) -c $? +bsd-comp.o: ../modules/bsd-comp.c + $(CC) $(CFLAGS) -c $? ppp_if.o: ppp_if.c ppp_async.o: ppp_async.c ppp_comp.o: ppp_comp.c diff --git a/chat/.cvsignore b/chat/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/chat/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/freebsd-2.0/kinstall.sh b/freebsd-2.0/kinstall.sh index 7273902..f865255 100755 --- a/freebsd-2.0/kinstall.sh +++ b/freebsd-2.0/kinstall.sh @@ -16,7 +16,7 @@ CONFIG=config # Copy new versions of files into /sys/net -for f in net/if_ppp.h net/ppp-comp.h net/ppp_defs.h $SRC/bsd-comp.c \ +for f in net/if_ppp.h net/ppp-comp.h net/ppp_defs.h netbsd/bsd-comp.c \ $SRC/if_ppp.c $SRC/if_pppvar.h $SRC/ppp_tty.c \ $SRC/pppcompress.c $SRC/pppcompress.h; do dest=$SYS/net/$(basename $f) diff --git a/osf1/Makefile b/osf1/Makefile index b7b294f..80a1dda 100644 --- a/osf1/Makefile +++ b/osf1/Makefile @@ -1,7 +1,7 @@ # # Dummy Makefile for OSF/1 # -# $Id: Makefile,v 1.1 1995/05/01 02:17:20 paulus Exp $ +# $Id: Makefile,v 1.2 1995/06/01 06:18:23 paulus Exp $ # install: @@ -9,8 +9,9 @@ install: @echo ' Follow the instructions in README.osf to make the kernel' @echo ' drivers for OSF/1.' @echo - cp bsd-comp.c ppp_async.c ppp_comp.c /sys/streamsm - cp ppp_if.c ppp_init.c vjcompress.c /sys/streamsm + cp ../modules/bsd-comp.c ../modules/vjcompress.c /sys/streamsm + cp ../sunos/ppp_async.c ../sunos/ppp_comp.c /sys/streamsm + cp ../sunos/ppp_if.c ppp_init.c /sys/streamsm cp ../net/if_ppp.h ../net/ppp-comp.h ../net/ppp_defs.h /sys/include/net cp ../net/ppp_str.h ../net/slcompress.h /sys/include/net cp ../net/vjcompress.h /sys/include/net diff --git a/pppd/.cvsignore b/pppd/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/pppd/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/pppstats/.cvsignore b/pppstats/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/pppstats/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/svr4/Makefile b/svr4/Makefile index c7a335a..08b7384 100644 --- a/svr4/Makefile +++ b/svr4/Makefile @@ -1,7 +1,7 @@ # # Makefile for STREAMS modules for Solaris 2. # -# $Id: Makefile,v 1.4 1995/06/01 02:22:48 paulus Exp $ +# $Id: Makefile,v 1.5 1995/06/01 06:18:48 paulus Exp $ # CFLAGS= -D_KERNEL -I.. -O @@ -18,6 +18,11 @@ ppp_ahdl: ppp_ahdlc.o ppp_comp: ppp_comp.o bsd-comp.o vjcompress.o ld -r -o ppp_comp ppp_comp.o bsd-comp.o vjcompress.o +bsd-comp.o: ../modules/bsd-comp.c + $(CC) $(CFLAGS) -c $? +vjcompress.o: ../modules/vjcompress.c + $(CC) $(CFLAGS) -c $? + install: all cp ppp ppp.conf /kernel/drv cp ppp_comp ppp_ahdl /kernel/strmod