root/net/Makefile

/* [previous][next][first][last][top][bottom][index][help] */
#
# 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...

SUBDIRS     := 802 ax25 core ethernet ipv4 ipx unix appletalk netrom

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

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

OBJS    =  socket.o protocols.o

all:            network.a

network.a:      subdirs $(OBJS)
                rm -f $@
                $(AR) rcs $@ $(OBJS) $(SUBOBJS)

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

modules:

include $(TOPDIR)/Rules.make

/* [previous][next][first][last][top][bottom][index][help] */