Annotation of linux/lib/Makefile, revision 1.1

1.1     ! root        1: #
        !             2: # Makefile for some libs needed in the kernel.
        !             3: #
        !             4: # Note! Dependencies are done automagically by 'make dep', which also
        !             5: # removes any old dependencies. DON'T put your own dependencies here
        !             6: # unless it's something special (ie not a .c file).
        !             7: #
        !             8: 
        !             9: AR     =gar
        !            10: AS     =gas
        !            11: LD     =gld
        !            12: LDFLAGS        =-s -x
        !            13: CC     =gcc
        !            14: CFLAGS =-Wall -O -fstrength-reduce -fomit-frame-pointer -fcombine-regs \
        !            15:        -finline-functions -mstring-insns -nostdinc -I../include
        !            16: CPP    =gcc -E -nostdinc -I../include
        !            17: 
        !            18: .c.s:
        !            19:        $(CC) $(CFLAGS) \
        !            20:        -S -o $*.s $<
        !            21: .s.o:
        !            22:        $(AS) -c -o $*.o $<
        !            23: .c.o:
        !            24:        $(CC) $(CFLAGS) \
        !            25:        -c -o $*.o $<
        !            26: 
        !            27: OBJS  = ctype.o _exit.o open.o close.o errno.o write.o dup.o setsid.o \
        !            28:        execve.o wait.o string.o
        !            29: 
        !            30: lib.a: $(OBJS)
        !            31:        $(AR) rcs lib.a $(OBJS)
        !            32:        sync
        !            33: 
        !            34: clean:
        !            35:        rm -f core *.o *.a tmp_make
        !            36:        for i in *.c;do rm -f `basename $$i .c`.s;done
        !            37: 
        !            38: dep:
        !            39:        sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
        !            40:        (for i in *.c;do echo -n `echo $$i | sed 's,\.c,\.s,'`" "; \
        !            41:                $(CPP) -M $$i;done) >> tmp_make
        !            42:        cp tmp_make Makefile
        !            43: 
        !            44: ### Dependencies:

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.