head	1.5;
access;
symbols
	dws_pl15i:1.5
	LINUX_0_99_15I:1.1.1.4
	cluster_15h:1.5
	dws_pl15h_ibcs:1.5
	LINUX_0_99_15H:1.1.1.4
	LINUX_0_99_15G:1.1.1.4
	dws_pl15f_cluster_08a:1.5
	dws_pl15f:1.5
	LINUX_0_99_15F:1.1.1.4
	dws_pl15e:1.5
	LINUX_0_99_15E:1.1.1.4
	LINUX_0_99_15D:1.1.1.4
	LINUX_0_99_15C:1.1.1.4
	dws_pl15b:1.5
	LINUX_0_99_15B:1.1.1.4
	dws_pl15a:1.5
	LINUX_0_99_15A:1.1.1.4
	dws_pl15:1.5
	LINUX_0_99_15:1.1.1.4
	LINUX_0_99_14Z:1.1.1.4
	dws_pl14y:1.5
	LINUX_0_99_14Y:1.1.1.4
	dws_pl14x:1.5
	LINUX_0_99_14X:1.1.1.4
	LINUX_0_99_14W:1.1.1.4
	LINUX_0_99_14V:1.1.1.4
	LINUX_0_99_14U:1.1.1.4
	dws_pl14t:1.5
	LINUX_0_99_14T:1.1.1.4
	dws_pl14s:1.4
	LINUX_0_99_14S:1.1.1.4
	dws_pl14r:1.4
	LINUX_0_99_14R:1.1.1.4
	dws_pl14q:1.4
	LINUX_0_99_14Q:1.1.1.4
	dws_pl14p:1.4
	LINUX_0_99_14P:1.1.1.4
	dws_pl14o:1.4
	LINUX_0_99_14O:1.1.1.4
	LINUX_0_99_14M:1.1.1.4
	LINUX_0_99_14L:1.1.1.4
	LINUX_0_99_14K:1.1.1.4
	LINUX_0_99_14J:1.1.1.4
	LINUX_0_99_14I:1.1.1.4
	LINUX_0_99_14H:1.1.1.4
	LINUX_0_99_14G:1.1.1.4
	dws_pl14f:1.3
	LINUX_0_99_14F:1.1.1.3
	dws_pl14e:1.2
	LINUX_0_99_14E:1.1.1.2
	LINUX_0_99_14D:1.1.1.2
	LINUX_0_99_14C:1.1.1.1
	LINUX_0_99_14B:1.1.1.1
	LINUX_0_99_14A:1.1.1.1
	LINUX_0_99_14:1.1.1.1
	LINUX:1.1.1;
locks; strict;
comment	@# @;


1.5
date	94.01.22.09.06.31;	author dws;	state Exp;
branches;
next	1.4;

1.4
date	94.01.10.11.44.55;	author steinber;	state Exp;
branches;
next	1.3;

1.3
date	93.12.20.17.18.12;	author steinber;	state Exp;
branches;
next	1.2;

1.2
date	93.12.15.16.03.29;	author steinber;	state Exp;
branches;
next	1.1;

1.1
date	93.12.09.16.58.12;	author steinber;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	93.12.09.16.58.13;	author steinber;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	93.12.14.15.36.13;	author steinber;	state Exp;
branches;
next	1.1.1.3;

1.1.1.3
date	93.12.20.16.54.44;	author steinber;	state Exp;
branches;
next	1.1.1.4;

1.1.1.4
date	94.01.08.15.52.03;	author steinber;	state Exp;
branches;
next	;


desc
@@


1.5
log
@checkpoint restart and loop devices added
@
text
@#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

.S.s:
	$(CPP) -traditional $< -o $*.s
.c.s:
	$(CC) $(CFLAGS) -S $<
.s.o:
	$(AS) -c -o $*.o $<
.c.o:
	$(CC) $(CFLAGS) -c $<

OBJS  = sched.o sys_call.o traps.o irq.o dma.o fork.o \
 	panic.o printk.o vsprintf.o sys.o module.o ksyms.o exit.o \
	signal.o mktime.o ptrace.o ioport.o itimer.o \
	info.o ldt.o time.o des.o

all: kernel.o

kernel.o: $(OBJS)
	$(LD) -r -o kernel.o $(OBJS)

sys_call.s: sys_call.S

sys_call.o: sys_call.s

sched.o: sched.c
	$(CC) $(CFLAGS) $(PROFILING) -fno-omit-frame-pointer -c $<

ksyms.lst: ksyms.S ../include/linux/autoconf.h
	$(CPP) $(CFLAGS) $< > $@@
 
ksyms.s: ksyms.sh ksyms.lst
	sh $< > $@@

ksyms.o: ksyms.s

dep:
	$(CPP) -M *.c > .depend

dummy:

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif

@


1.4
log
@updated to pl14o
@
text
@d22 1
a22 1
	info.o ldt.o time.o
@


1.3
log
@merged pl14f diffs
@
text
@d37 1
a37 1
	$(CPP) $(CFLAGS) ksyms.S > ksyms.lst
d39 2
a40 2
ksyms.s: ksyms.lst ksyms.sh
	sh ksyms.sh > ksyms.s
@


1.2
log
@some Makefile changes for cross-compilation
@
text
@d36 1
a36 1
ksyms.o: ksyms.S ksyms.sh ../include/linux/autoconf.h
d38 2
d41 3
a43 2
	$(AS) -o ksyms.o ksyms.s
 
@


1.1
log
@Initial revision
@
text
@d20 1
a20 1
	panic.o printk.o vsprintf.o sys.o exit.o \
a27 1
	sync
d36 5
@


1.1.1.1
log
@LINUX_0_99_14
@
text
@@


1.1.1.2
log
@LINUX_0_99_14D
@
text
@d20 1
a20 1
 	panic.o printk.o vsprintf.o sys.o module.o ksyms.o exit.o \
a36 5
ksyms.o: ksyms.S ksyms.sh /usr/include/linux/autoconf.h
	$(CPP) $(CFLAGS) ksyms.S > ksyms.lst
	sh ksyms.sh > ksyms.s
	$(AS) -o ksyms.o ksyms.s
 
@


1.1.1.3
log
@LINUX_0_99_14F
@
text
@d37 1
a37 1
ksyms.lst: ksyms.S ../include/linux/autoconf.h
d39 2
a41 5
ksyms.s: ksyms.lst ksyms.sh
	sh ksyms.sh > ksyms.s

ksyms.o: ksyms.s

@


1.1.1.4
log
@LINUX_0_99_14G
@
text
@d38 1
a38 1
	$(CPP) $(CFLAGS) $< > $@@
d40 2
a41 2
ksyms.s: ksyms.sh ksyms.lst
	sh $< > $@@
@
