Annotation of 43BSD/contrib/icon/rt/Makefile, revision 1.1.1.1

1.1       root        1: CFLAGS = -O
                      2: 
                      3: Lib:           addmem.o alc.o anycmp.o arith.o cplist.o csv.o ctype.o \
                      4:                cvcset.o cvint.o cvnum.o cvpos.o cvreal.o cvstr.o dblocks.o \
                      5:                defany.o defcset.o deffile.o defint.o defshort.o defstr.o \
                      6:                deref.o doasgn.o dump.o equiv.o exp.o fail.o floor.o gc.o \
                      7:                gcollect.o gcvt.o getstr.o hash.o host.o ldfps.o lexcmp.o \
                      8:                locate.o log.o memb.o mkint.o mkreal.o mksubs.o numcmp.o \
                      9:                outimage.o pow.o putstr.o qtos.o setbound.o strprc.o \
                     10:                suspend.o sweep.o trace.o
                     11:                ar rc Lib $?
                     12:                ranlib Lib
                     13: 
                     14: addmem.o:      ../h/rt.h ../h/config.h
                     15: alc.o:         ../h/rt.h ../h/gc.h ../h/record.h ../h/config.h
                     16: anycmp.o:      ../h/rt.h ../h/config.h
                     17: arith.o:       ../h/defs.s ../h/config.h
                     18: cplist.o:      ../h/rt.h ../h/config.h
                     19: csv.o:         ../h/defs.s ../h/config.h
                     20: ctype.o:       ../h/rt.h ../h/ctype.h ../h/config.h
                     21: cvcset.o:      ../h/rt.h ../h/config.h
                     22: cvint.o:       ../h/rt.h ../h/config.h
                     23: cvnum.o:       ../h/rt.h ../h/ctype.h ../h/config.h
                     24: cvpos.o:       ../h/rt.h ../h/config.h
                     25: cvreal.o:      ../h/rt.h ../h/config.h
                     26: cvstr.o:       ../h/rt.h ../h/config.h
                     27: dblocks.o:     ../h/rt.h ../h/config.h
                     28: defany.o:      ../h/rt.h ../h/config.h
                     29: defcset.o:     ../h/rt.h ../h/config.h
                     30: deffile.o:     ../h/rt.h ../h/config.h
                     31: defint.o:      ../h/rt.h ../h/config.h
                     32: defshort.o:    ../h/rt.h ../h/config.h
                     33: defstr.o:      ../h/rt.h ../h/config.h
                     34: deref.o:       ../h/rt.h ../h/config.h
                     35: doasgn.o:      ../h/rt.h ../h/config.h
                     36: dump.o:                ../h/rt.h ../h/gc.h ../h/config.h
                     37: equiv.o:       ../h/rt.h ../h/config.h
                     38: exp.o:         ../h/rt.h ../h/config.h
                     39: fail.o:                ../h/defs.s ../h/config.h
                     40: floor.o:       ../h/rt.h ../h/config.h
                     41: gc.o:          ../h/rt.h ../h/gc.h ../h/config.h
                     42: gcollect.o:    ../h/defs.s ../h/config.h
                     43: gcvt.o:                ../h/rt.h ../h/config.h
                     44: getstr.o:      ../h/rt.h ../h/config.h
                     45: hash.o:                ../h/rt.h ../h/config.h
                     46: host.o:                ../h/rt.h ../h/config.h
                     47: ldfps.o:       ../h/defs.s ../h/config.h
                     48: lexcmp.o:      ../h/rt.h ../h/config.h
                     49: locate.o:      ../h/rt.h ../h/config.h
                     50: log.o:         ../h/rt.h ../h/config.h
                     51: memb.o:                ../h/rt.h ../h/config.h
                     52: mkint.o:       ../h/rt.h ../h/config.h
                     53: mkreal.o:      ../h/rt.h ../h/config.h
                     54: mksubs.o:      ../h/rt.h ../h/config.h
                     55: numcmp.o:      ../h/rt.h ../h/config.h
                     56: outimage.o:    ../h/rt.h ../h/record.h ../h/config.h
                     57: pow.o:         ../h/rt.h ../h/config.h
                     58: putstr.o:      ../h/rt.h ../h/config.h
                     59: qtos.o:                ../h/rt.h ../h/config.h
                     60: setbound.o:    ../h/defs.s ../h/config.h
                     61: strprc.o:      ../h/rt.h ../h/pnames.h ../h/config.h ../h/pdef.h
                     62: suspend.o:     ../h/defs.s ../h/config.h
                     63: sweep.o:       ../h/rt.h ../h/gc.h ../h/config.h
                     64: trace.o:       ../h/rt.h ../h/config.h
                     65: 
                     66: Listall:
                     67:                @pr *.[cs]
                     68:                @date >List
                     69: 
                     70: List:          addmem.c alc.c anycmp.c arith.s cplist.c csv.s ctype.c \
                     71:                cvcset.c cvint.c cvnum.c cvpos.c cvreal.c cvstr.c dblocks.c \
                     72:                defany.c defcset.c deffile.c defint.c defshort.c defstr.c \
                     73:                deref.c doasgn.c dump.c equiv.c exp.c fail.s floor.c gc.c \
                     74:                gcollect.s gcvt.c getstr.c hash.c host.c ldfps.s lexcmp.c \
                     75:                locate.c log.c memb.c mkint.c mkreal.c mksubs.c numcmp.c \
                     76:                outimage.c pow.c putstr.c qtos.c setbound.s suspend.s \
                     77:                sweep.c trace.c
                     78:                @pr $?
                     79:                @date >List
                     80: 
                     81: .s.o:
                     82:                cat ../h/defs.s $< >t.c
                     83:                cc -E t.c | egrep -v "(^#|^$$)" >t.s
                     84:                as -o $@ t.s
                     85:                rm -f t.c t.s
                     86: Clean:
                     87:                rm -f Lib *.o
                     88: 
                     89: Dist-clean:
                     90:                rm -f .BK* .CK* .emacs*
                     91:                rm -f `gcomp Makefile *.c *.s`

unix.superglobalmegacorp.com

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