DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ M T

⟦08c578df1⟧ TextFile

    Length: 3249 (0xcb1)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦34224b4fb⟧ 
                └─ ⟦this⟧ »./Xmu/Makefile« 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦90cbe8196⟧ 
                └─ ⟦this⟧ »./Xmu/Makefile« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦afaca67b5⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦afaca67b5⟧ 
                └─ ⟦this⟧ »./Xmu/Makefile« 

TextFile

##############################################################################
#---Makefile - This makefile is used to create the Xmu sub-library of the RXI
#   program.  It is not a "normal" makefile.  It will only run correctly
#   when invoked by the main makefile located in ../Makefile.
#
#   You should not need to edit anything in this file.
##############################################################################

             CC = cc
             CP = cp
             LD = ld
             RM = rm -f
             MV = mv
             LN = ln -s
         RANLIB = ranlib
             AR = ar clq
           MAKE = make

#---These macros are defined on the make command line or not at all.

        CCFLAGS =
        DEFINES =
       INCLUDES =
        LDFLAGS =
        LIBDIRS =

#---These macros are redefined on the make command line if some special effect
#   is desirec.

       OPTIMIZE = -O

#---These macros are (presumably) never overridded by the command line.

   intCCFLAGS  = $(CCFLAGS) $(OPTIMIZE) $(intDEFINES) $(intINCLUDES)
   intDEFINES  = -DUTMP $(DEFINES)
   intINCLUDES = $(INCLUDES)
   intLDFLAGS  = $(LDFLAGS) $(intLIBDIRS) -assert nosymbolic
   intLIBDIRS  = $(LIBDIRS)

.c.o:
	$(RM) $@
	$(CC) $(intCCFLAGS) -c $*.c

         RM_CMD = $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a \
			.emacs_* make.log MakeOut

###########################################################################

HEADERS = \
	Xmu.h

OBJS = \
	Atoms.o \
	CvtStdSel.o \
	DefErrMsg.o \
	Lower.o \
	StrToBmap.o \
	StrToCurs.o \
	StrToJust.o \
	StrToOrnt.o \
	StrToWidg.o

all:: libXmu.a

libXmu.a: $(OBJS) $(HEADERS)
	$(RM) $@
	$(AR) $@ $(OBJS)

clean::
	$(RM_CMD) \#*

###########################################################################
# dependencies generated by makedepend

# DO NOT DELETE

Atoms.o:  Xmu.h ../X11/Intrinsic.h
Atoms.o:   ../X11/Core.h
Atoms.o: ../X11/Composite.h ../X11/Constraint.h
CvtStdSel.o:  ../X11/IntrinsicP.h
CvtStdSel.o: ../X11/Intrinsic.h 
CvtStdSel.o:  ../X11/Core.h
CvtStdSel.o: ../X11/Composite.h ../X11/Constraint.h
CvtStdSel.o: ../X11/CoreP.h ../X11/CompositeP.h
CvtStdSel.o: ../X11/ConstrainP.h ../X11/Shell.h
CvtStdSel.o: ../X11/ShellP.h ../X11/VendorP.h 
CvtStdSel.o:  Xmu.h
CvtStdSel.o: ../X11/Intrinsic.h
StrToBmap.o: ../X11/Intrinsic.h 
StrToBmap.o:  ../X11/Core.h
StrToBmap.o: ../X11/Composite.h ../X11/Constraint.h
StrToBmap.o: ../X11/StringDefs.h
StrToBmap.o: Xmu.h
StrToCurs.o: ../X11/Intrinsic.h 
StrToCurs.o:  ../X11/Core.h
StrToCurs.o: ../X11/Composite.h ../X11/Constraint.h
StrToCurs.o: ../X11/StringDefs.h
StrToCurs.o: ../X11/IntrinsicP.h ../X11/Intrinsic.h
StrToCurs.o: ../X11/CoreP.h ../X11/CompositeP.h
StrToCurs.o: ../X11/ConstrainP.h ../X11/CoreP.h
StrToCurs.o: Xmu.h
StrToJust.o: ../X11/Intrinsic.h 
StrToJust.o:  ../X11/Core.h
StrToJust.o: ../X11/Composite.h ../X11/Constraint.h Xmu.h
StrToOrnt.o: ../X11/Intrinsic.h 
StrToOrnt.o:  ../X11/Core.h
StrToOrnt.o: ../X11/Composite.h ../X11/Constraint.h
StrToOrnt.o: ../X11/StringDefs.h Xmu.h
StrToWidg.o:  ../X11/IntrinsicP.h
StrToWidg.o: ../X11/Intrinsic.h 
StrToWidg.o:  ../X11/Core.h
StrToWidg.o: ../X11/Composite.h ../X11/Constraint.h
StrToWidg.o: ../X11/CoreP.h ../X11/CompositeP.h
StrToWidg.o: ../X11/ConstrainP.h