head	1.1;
branch	1.1.1;
access;
symbols
	dws_pl15i:1.1.1.1
	LINUX_0_99_15I:1.1.1.1
	cluster_15h:1.1.1.1
	dws_pl15h_ibcs:1.1.1.1
	LINUX_0_99_15H:1.1.1.1
	LINUX_0_99_15G:1.1.1.1
	dws_pl15f_cluster_08a:1.1.1.1
	dws_pl15f:1.1.1.1
	LINUX_0_99_15F:1.1.1.1
	dws_pl15e:1.1.1.1
	LINUX_0_99_15E:1.1.1.1
	LINUX_0_99_15D:1.1.1.1
	LINUX_0_99_15C:1.1.1.1
	dws_pl15b:1.1.1.1
	LINUX_0_99_15B:1.1.1.1
	dws_pl15a:1.1.1.1
	LINUX_0_99_15A:1.1.1.1
	dws_pl15:1.1.1.1
	LINUX_0_99_15:1.1.1.1
	LINUX_0_99_14Z:1.1.1.1
	dws_pl14y:1.1.1.1
	LINUX_0_99_14Y:1.1.1.1
	dws_pl14x:1.1.1.1
	LINUX_0_99_14X:1.1.1.1
	LINUX_0_99_14W:1.1.1.1
	LINUX_0_99_14V:1.1.1.1
	LINUX_0_99_14U:1.1.1.1
	dws_pl14t:1.1.1.1
	LINUX_0_99_14T:1.1.1.1
	dws_pl14s:1.1.1.1
	LINUX_0_99_14S:1.1.1.1
	dws_pl14r:1.1.1.1
	LINUX_0_99_14R:1.1.1.1
	dws_pl14q:1.1.1.1
	LINUX_0_99_14Q:1.1.1.1
	dws_pl14p:1.1.1.1
	LINUX_0_99_14P:1.1.1.1
	dws_pl14o:1.1.1.1
	LINUX_0_99_14O:1.1.1.1
	LINUX_0_99_14M:1.1.1.1
	LINUX_0_99_14L:1.1.1.1
	LINUX_0_99_14K:1.1.1.1
	LINUX_0_99_14J:1.1.1.1
	LINUX_0_99_14I:1.1.1.1
	LINUX_0_99_14H:1.1.1.1
	LINUX_0_99_14G:1.1.1.1
	dws_pl14f:1.1.1.1
	LINUX_0_99_14F:1.1.1.1
	dws_pl14e:1.1.1.1
	LINUX_0_99_14E:1.1.1.1
	LINUX_0_99_14D:1.1.1.1
	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.1
date	93.12.09.16.58.15;	author steinber;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	93.12.09.16.58.16;	author steinber;	state Exp;
branches;
next	;


desc
@@



1.1
log
@Initial revision
@
text
@#
# Makefile for the linux networking.
#
# 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 definition is now in the main makefile...

# only these two lines should need to be changed to remove inet sockets.
# (and the inet/tcpip.o in net.o)

SUBDIRS     := unix inet

SUBOBJS     := $(foreach f,$(SUBDIRS),$f/$f.o)

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

OBJS	=  Space.o ddi.o socket.o

all:		subdirs net.o

net.o:		$(OBJS) network.a
		$(LD) -r -o net.o $(OBJS) network.a

network.a:	$(SUBOBJS)
		rm -f $@@
		ar rc $@@ $(SUBOBJS)
		ranlib $@@

subdirs:	dummy
		set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i; done

dep:
		$(CPP) -M *.c > .depend
		set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i dep; done

dummy:

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

@


1.1.1.1
log
@LINUX_0_99_14
@
text
@@
