|
 1.3.69
 Makefile
diff -u --recursive --new-file v1.3.68/linux/Makefile linux/Makefile
--- v1.3.68/linux/Makefile Fri Feb 23 13:54:33 1996
+++ linux/Makefile Mon Feb 26 12:06:50 1996
@@ -1,6 +1,6 @@
VERSION = 1
PATCHLEVEL = 3
-SUBLEVEL = 68
+SUBLEVEL = 69
ARCH = i386
@@ -130,6 +130,10 @@
LIBS =$(TOPDIR)/lib/lib.a
SUBDIRS =kernel drivers mm fs net ipc lib
+ifeq ($(CONFIG_ISDN),y)
+DRIVERS := $(DRIVERS) drivers/isdn/isdn.a
+endif
+
ifdef CONFIG_CD_NO_IDESCSI
DRIVERS := $(DRIVERS) drivers/cdrom/cdrom.a
endif
@@ -339,7 +343,7 @@
backup: mrproper
- cd .. && tar cf - linux | gzip -9 > backup.gz
+ cd .. && tar cf - linux/ | gzip -9 > backup.gz
sync
dep-files: archdep .hdepend include/linux/version.h
|