Annotation of linux/kernel/math/Makefile, revision 1.1.1.4

1.1       root        1: #
1.1.1.3   root        2: # Makefile for the kernel math emulation routines
1.1       root        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: 
1.1.1.3   root        9: AR     =ar
                     10: AS     =as
                     11: LD     =ld
1.1       root       12: LDFLAGS        =-s -x
1.1.1.4 ! root       13: CC     =gcc -nostdinc -I../../include
        !            14: CPP    =cpp -nostdinc -I../../include
1.1       root       15: 
                     16: .c.s:
1.1.1.4 ! root       17:        $(CC) $(CFLAGS) $(MATH_EMULATION) \
1.1       root       18:        -S -o $*.s $<
                     19: .s.o:
                     20:        $(AS) -c -o $*.o $<
                     21: .c.o:
1.1.1.4 ! root       22:        $(CC) $(CFLAGS) $(MATH_EMULATION) \
1.1       root       23:        -c -o $*.o $<
                     24: 
1.1.1.4 ! root       25: OBJS  = emulate.o error.o convert.o ea.o get_put.o \
1.1.1.2   root       26:        add.o mul.o div.o compare.o
1.1       root       27: 
                     28: math.a: $(OBJS)
                     29:        $(AR) rcs math.a $(OBJS)
                     30:        sync
                     31: 
                     32: clean:
                     33:        rm -f core *.o *.a tmp_make
                     34:        for i in *.c;do rm -f `basename $$i .c`.s;done
                     35: 
                     36: dep:
                     37:        sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
                     38:        (for i in *.c;do echo -n `echo $$i | sed 's,\.c,\.s,'`" "; \
                     39:                $(CPP) -M $$i;done) >> tmp_make
                     40:        cp tmp_make Makefile
                     41: 
                     42: ### Dependencies:
1.1.1.2   root       43: add.s add.o : add.c ../../include/linux/math_emu.h ../../include/linux/sched.h \
                     44:   ../../include/linux/head.h ../../include/linux/fs.h \
                     45:   ../../include/sys/types.h ../../include/linux/mm.h \
1.1.1.3   root       46:   ../../include/linux/kernel.h ../../include/signal.h \
                     47:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     48:   ../../include/sys/resource.h 
1.1.1.2   root       49: compare.s compare.o : compare.c ../../include/linux/math_emu.h \
                     50:   ../../include/linux/sched.h ../../include/linux/head.h \
                     51:   ../../include/linux/fs.h ../../include/sys/types.h ../../include/linux/mm.h \
1.1.1.3   root       52:   ../../include/linux/kernel.h ../../include/signal.h \
                     53:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     54:   ../../include/sys/resource.h 
1.1.1.2   root       55: convert.s convert.o : convert.c ../../include/linux/math_emu.h \
                     56:   ../../include/linux/sched.h ../../include/linux/head.h \
                     57:   ../../include/linux/fs.h ../../include/sys/types.h ../../include/linux/mm.h \
1.1.1.3   root       58:   ../../include/linux/kernel.h ../../include/signal.h \
                     59:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     60:   ../../include/sys/resource.h 
1.1.1.2   root       61: div.s div.o : div.c ../../include/linux/math_emu.h ../../include/linux/sched.h \
                     62:   ../../include/linux/head.h ../../include/linux/fs.h \
                     63:   ../../include/sys/types.h ../../include/linux/mm.h \
1.1.1.3   root       64:   ../../include/linux/kernel.h ../../include/signal.h \
                     65:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     66:   ../../include/sys/resource.h 
1.1.1.2   root       67: ea.s ea.o : ea.c ../../include/stddef.h ../../include/linux/math_emu.h \
                     68:   ../../include/linux/sched.h ../../include/linux/head.h \
                     69:   ../../include/linux/fs.h ../../include/sys/types.h ../../include/linux/mm.h \
                     70:   ../../include/linux/kernel.h ../../include/signal.h \
1.1.1.3   root       71:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     72:   ../../include/sys/resource.h ../../include/asm/segment.h 
1.1.1.2   root       73: error.s error.o : error.c ../../include/signal.h ../../include/sys/types.h \
                     74:   ../../include/linux/sched.h ../../include/linux/head.h \
                     75:   ../../include/linux/fs.h ../../include/linux/mm.h \
1.1.1.3   root       76:   ../../include/linux/kernel.h ../../include/sys/param.h \
                     77:   ../../include/sys/time.h ../../include/time.h ../../include/sys/resource.h 
1.1.1.2   root       78: get_put.s get_put.o : get_put.c ../../include/signal.h ../../include/sys/types.h \
                     79:   ../../include/linux/math_emu.h ../../include/linux/sched.h \
                     80:   ../../include/linux/head.h ../../include/linux/fs.h \
                     81:   ../../include/linux/mm.h ../../include/linux/kernel.h \
1.1.1.3   root       82:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     83:   ../../include/sys/resource.h ../../include/asm/segment.h 
1.1.1.4 ! root       84: emulate.s emulate.o : emulate.c ../../include/linux/config.h 
1.1.1.2   root       85: mul.s mul.o : mul.c ../../include/linux/math_emu.h ../../include/linux/sched.h \
                     86:   ../../include/linux/head.h ../../include/linux/fs.h \
                     87:   ../../include/sys/types.h ../../include/linux/mm.h \
1.1.1.3   root       88:   ../../include/linux/kernel.h ../../include/signal.h \
                     89:   ../../include/sys/param.h ../../include/sys/time.h ../../include/time.h \
                     90:   ../../include/sys/resource.h 

unix.superglobalmegacorp.com

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