DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

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

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦124360948⟧ TextFile

    Length: 1980 (0x7bc)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/h/quipu/Makefile« 

TextFile

###############################################################################
#   Instructions to Make, for compilation of ISODE QUIPU include files
###############################################################################

###############################################################################
#
# $Header: /f/osi/h/quipu/RCS/Makefile,v 6.1 89/03/23 22:27:31 mrose Exp $
#
#
# $Log:	Makefile,v $
# Revision 6.1  89/03/23  22:27:31  mrose
# out-the-door
# 
# Revision 6.0  89/03/18  23:32:39  mrose
# Release 5.0
# 
###############################################################################

###############################################################################
#
#                                NOTICE
#
#    Acquisition, use, and distribution of this module and related
#    materials are subject to the restrictions of a license agreement.
#    Consult the Preface in the User's Manual for the full terms of
#    this agreement.
#
###############################################################################


HEADERS =       abandon.h add.h attr.h attrvalue.h bind.h \
		common.h commonarg.h compare.h config.h \
		connection.h ds_error.h dsargument.h dsp.h \
		dua.h entry.h list.h  modify.h \
		modifyrdn.h name.h oid.h read.h remove.h \
		ds_search.h util.h sequence.h dap.h photo.h


###################################################################
# Here it is...
###################################################################

all:;

inst-all:;      -mkdir $(INCDIRM)/quipu
		@for h in $(HEADERS); do $(MAKE) TARGET=$$h inst-target; done

inst-target:    $(INCDIR)quipu/$(TARGET)

$(INCDIR)quipu/$(TARGET):       $(TARGET)
		-cp $@ z$(TARGET)
		sed -e 's%#include "\(.*\)"%#include "$(INCDIR)\1"%' \
			< $(TARGET) | \
			sed -e 's%#include "/usr/include/\(.*\)"%#include <\1>%' > $@
		-@ls -gls $@
		-@echo ""

install:        inst-all clean

lint:;

clean:;         rm -f z* _* *.orig

grind:;         tgrind -lc $(HEADERS)