Annotation of coherent/g/usr/lib/uucp/tay104/unix/Makefile.in, revision 1.1

1.1     ! root        1: # This is the Makefile for the unix subdirectory of Taylor UUCP.
        !             2: # This subdirectory contains Unix specific support functions.
        !             3: #
        !             4: # The file Makefile.in should be processed by configure to generate
        !             5: # Makefile.  If you want to generate Makefile by hand, you must find
        !             6: # all variables surrounded by @ and replace them with the correct
        !             7: # value (e.g. @CC@ must be replaced by something like cc or gcc).
        !             8: 
        !             9: SHELL=/bin/sh
        !            10: 
        !            11: # These are overridden by the call from the top level Makefile
        !            12: CC = @CC@
        !            13: CFLAGS = @CFLAGS@
        !            14: RANLIB = @RANLIB@
        !            15: prefix = /usr/local
        !            16: sbindir = $(prefix)/lib/uucp
        !            17: UUDIRFLAGS =
        !            18: 
        !            19: srcdir = @srcdir@
        !            20: VPATH = @srcdir@
        !            21: 
        !            22: MORECFLAGS = -I$(srcdir)/.. -I.. -DSBINDIR=\"$(sbindir)\" -DOWNER=\"$(owner)\" $(UUDIRFLAGS)
        !            23: 
        !            24: OBJS = access.o addbas.o app3.o app4.o basnam.o bytfre.o cwd.o \
        !            25:        chmod.o cohtty.o cusub.o detach.o efopen.o epopen.o exists.o \
        !            26:        filnam.o fsusg.o indir.o init.o isdir.o isfork.o iswait.o \
        !            27:        jobid.o lcksys.o link.o locfil.o lock.o loctim.o mail.o \
        !            28:        mkdirs.o mode.o move.o opensr.o pause.o picksb.o portnm.o \
        !            29:        proctm.o recep.o run.o seq.o serial.o signal.o sindir.o size.o \
        !            30:        sleep.o spawn.o splcmd.o splnam.o spool.o srmdir.o statsb.o \
        !            31:        status.o time.o tmpfil.o trunc.o uacces.o ufopen.o ultspl.o \
        !            32:        unknwn.o uuto.o walk.o wldcrd.o work.o xqtfil.o xqtsub.o @UNIXOBJS@
        !            33: 
        !            34: all: libunix.a
        !            35: 
        !            36: clean:
        !            37:        rm -f $(OBJS) libunix.a
        !            38: 
        !            39: distclean: clean
        !            40:        rm -f Makefile
        !            41: 
        !            42: mostlyclean: clean
        !            43: realclean: distclean
        !            44: 
        !            45: libunix.a: $(OBJS)
        !            46:        rm -f libunix.a
        !            47:        ar qc libunix.a $(OBJS)
        !            48:        -$(RANLIB) libunix.a
        !            49: 
        !            50: .c.o:
        !            51:        $(CC) -c $(CFLAGS) $(MORECFLAGS) $<
        !            52: 
        !            53: dist:
        !            54:        mkdir ../uucp-$(VERSION)/unix
        !            55:        ln `cat MANIFEST` ../uucp-$(VERSION)/unix
        !            56: 
        !            57: Makefile: Makefile.in
        !            58:        (cd ..; sh config.status)
        !            59: 
        !            60: # Header file dependencies.
        !            61: 
        !            62: $(OBJS): $(srcdir)/../uucp.h ../conf.h $(srcdir)/../policy.h ../sysdep.h
        !            63: 
        !            64: access.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            65: addbas.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            66: app3.o: $(srcdir)/../uudefs.h
        !            67: app4.o: $(srcdir)/../uudefs.h
        !            68: basnam.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            69: chmod.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            70: cusub.o: $(srcdir)/../cu.h $(srcdir)/../uudefs.h $(srcdir)/../conn.h
        !            71: cusub.o: $(srcdir)/../prot.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            72: cwd.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            73: detach.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            74: efopen.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            75: exists.o: $(srcdir)/../system.h
        !            76: filnam.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            77: indir.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            78: init.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            79: isdir.o: $(srcdir)/../system.h
        !            80: iswait.o: $(srcdir)/../uudefs.h
        !            81: jobid.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            82: lcksys.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            83: link.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            84: locfil.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            85: lock.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            86: loctim.o: $(srcdir)/../system.h
        !            87: mail.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            88: mkdirs.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            89: mode.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            90: move.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            91: opensr.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            92: pause.o: $(srcdir)/../system.h
        !            93: picksb.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            94: portnm.o: $(srcdir)/../system.h
        !            95: proctm.o: $(srcdir)/../system.h
        !            96: recep.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            97: run.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !            98: seq.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !            99: serial.o: $(srcdir)/../uudefs.h $(srcdir)/../conn.h $(srcdir)/../system.h
        !           100: serial.o: $(srcdir)/../uuconf.h
        !           101: signal.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           102: sindir.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           103: size.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           104: sleep.o: $(srcdir)/../system.h
        !           105: spawn.o: $(srcdir)/../uudefs.h
        !           106: splcmd.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !           107: splnam.o: $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !           108: spool.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           109: srmdir.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           110: statsb.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !           111: status.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !           112: time.o: $(srcdir)/../system.h
        !           113: tmpfil.o: $(srcdir)/../uuconf.h $(srcdir)/../system.h
        !           114: trunc.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           115: uacces.o: $(srcdir)/../uudefs.h
        !           116: ufopen.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           117: ultspl.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           118: unknwn.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           119: uuto.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           120: walk.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           121: wldcrd.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           122: work.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h
        !           123: xqtfil.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h
        !           124: xqtsub.o: $(srcdir)/../uudefs.h $(srcdir)/../system.h $(srcdir)/../uuconf.h

unix.superglobalmegacorp.com

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