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

⟦ae6168ba6⟧ TextFile

    Length: 2054 (0x806)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦50f09e4e4⟧ 
                └─ ⟦this⟧ »./Xaw/Makefile« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦610eb0a19⟧ 
                └─ ⟦this⟧ »./Xaw/Makefile« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦d97085656⟧ 
                └─ ⟦this⟧ »./Xaw/Makefile« 

TextFile

##############################################################################
#---Makefile - This makefile is used to create the Xaw 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  = $(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 = \
	Cardinals.h \
	../RMCommand.h \
	../RMCommandP.h \
	../RMForm.h \
	../RMFormP.h \
	Label.h \
	LabelP.h \
	Scroll.h \
	ScrollP.h \
	Simple.h \
	SimpleP.h \
	XawMisc.h


OBJS = \
	GrayPixmap.o \
	Label.o \
	Scroll.o \
	Simple.o \
	Vendor.o

all:: libXaw.a

libXaw.a: $(OBJS) $(HEADERS)
	$(RM) $@
	$(AR) $@ $(OBJS)
	$(RANLIB) $@

clean::
	$(RM_CMD) \#*

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

# DO NOT DELETE

Label.o:  LabelP.h Label.h Simple.h ../X11/Xmu.h SimpleP.h 
Scroll.o: ScrollP.h Scroll.h ../X11/Xmu.h 
Simple.o: SimpleP.h Simple.h