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: T b

⟦5a640c4ce⟧ TextFile

    Length: 2951 (0xb87)
    Types: TextFile
    Names: »boomer.make«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/config/boomer.make« 

TextFile

###############################################################################
#   Instructions to Make, for compilation of ISODE processes for boomer (SunOS)
###############################################################################

###############################################################################
#
# $Header: /f/osi/config/RCS/boomer.make,v 6.0 89/03/18 23:26:07 mrose Rel $
#
#
# $Log:	boomer.make,v $
# Revision 6.0  89/03/18  23:26:07  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.
#
###############################################################################


###############################################################################
# Options
###############################################################################

#OPTIONS	=	-I. -I$(TOPDIR)h -DDEBUG
OPTIONS	=	-I. -I$(TOPDIR)h

HDIR	=	$(TOPDIR)h/
UTILDIR	=	$(TOPDIR)util/
BINDIR	=	/usr/local/bin/
ETCDIR	=	/usr/local/etc/
LOGDIR	=	/usr/local/log/
INCDIRM	=	/usr/local/include/isode
INCDIR	=	$(INCDIRM)/
PEPYDIRM=	$(INCDIR)pepy
PEPYDIR	=	$(PEPYDIRM)/
LIBDIR	=	/usr/local/lib/
LINTDIR	=	/usr/local/lib/lint/

SYSTEM	=	-bsd42
MANOPTS	=	-local


###############################################################################
# Programs and Libraries
###############################################################################

MAKE	=	./make DESTDIR=$(DESTDIR) $(MFLAGS) -k
SHELL	=	/bin/sh

CC      =	cc
#CFLAGS  =	-pipe -g -O $(OPTIONS)
CFLAGS  =	-pipe -g    $(OPTIONS)
LINT    =	lint
LFLAGS  =	-bhuz $(OPTIONS)
LD	=	ld
LDCC	=	$(CC)
LDFLAGS =	-g
ARFLAGS	=

LN	=	cp

# AET dbm
#AETDBM	=	aetbuild

# native to 4.2BSD UNIX
#LSOCKET	=	-losi -ldbm
LSOCKET	=	


###############################################################################
# WIN/OSI software modules
###############################################################################

first:		all-quipu


CACSAP	=	acsaprs.c
OACSAP	=	acsaprs.o
ACSAP-C	=	RS-C
ACSAP-O	=	RS-O

RS-O	=	RS-[0-9]*.o
RS-C	=	RS-[0-9]*.c

RS-O:		RS-C
		@$(MAKE) `/bin/ls $(RS-C) | sed 's/\.c$$/.o/'`
		-@touch $@

RS-C:		rs.py $(TOPDIR)pepy/xpepy
		-@rm -f $(RS-C) $(RS-O)
		$(TOPDIR)pepy/xpepy -a PY_advise -A -b RS -m $(PYFLAGS) rs.py
		-@touch $@

acsaprs.o: 	$(HDIR)psap.h $(HDIR)manifest.h $(HDIR)general.h \
		$(HDIR)config.h $(HDIR)isoaddrs.h $(HDIR)tsap.h \
		$(HDIR)tailor.h $(HDIR)logger.h


###############################################################################
# Generation Rules for library modules
###############################################################################

.c.o:;		$(CC) $(CFLAGS) -c $*.c