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

⟦58621a9a9⟧ TextFile

    Length: 2026 (0x7ea)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦50f09e4e4⟧ 
                └─ ⟦this⟧ »./Xmu/Makefile« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦610eb0a19⟧ 
                └─ ⟦this⟧ »./Xmu/Makefile« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦d97085656⟧ 
                └─ ⟦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

#---Uncomment this macro if you are using X11R4.

#          X11R4 = -X11R4

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

   intCCFLAGS  = $(OPTIMIZE) $(intDEFINES) $(intINCLUDES)
   intDEFINES  = -DUTMP $(X11R4) $(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)
	$(RANLIB) $@

clean::
	$(RM_CMD) \#*

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

# DO NOT DELETE

Atoms.o:     Xmu.h 
CvtStdSel.o: Xmu.h
StrToBmap.o: Xmu.h
StrToCurs.o: Xmu.h
StrToJust.o: Xmu.h
StrToOrnt.o: Xmu.h