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

⟦722b4034d⟧ TextFile

    Length: 2661 (0xa65)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

###############################################################################
#   Instructions to Make, for compilation of ISODE listen demo
###############################################################################

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

BINDIR	=	/usr/new/


###############################################################################
# Generation Rules for program modules
###############################################################################

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


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

LIBES	=	-lisode
LLIBS   =	-lisode


###############################################################################
# Files
###############################################################################

HFILES	=	listen.h
CFILES	=	listen.c initiate.c


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

all:		listen initiate
inst-all:	inst-listen inst-initiate
install:	inst-all clean
lint:		l-listen l-initiate


##################################################################
# listen
##################################################################

inst-listen:	$(BINDIR)listen

$(BINDIR)listen:	xlisten
		-cp $@ zxlisten
		-rm -f $@
		cp xlisten $@
		-@ls -gls $@
		-@echo ""

listen:		xlisten

xlisten:	listen.o report.o
		$(LDCC) $(LDFLAGS) -o $@ listen.o report.o $(LIBES) \
			$(LSOCKET)

l-listen:;	$(LINT) $(LFLAGS) listen.c ../callback/report.c $(LLIBS)

listen.o:	$(HFILES)

report.o:	../callback/report.c
		$(CC) $(CFLAGS) -c ../callback/report.c


##################################################################
# initiate
##################################################################

inst-initiate:	$(BINDIR)initiate

$(BINDIR)initiate:	xinitiate
		-cp $@ zxinitiate
		-rm -f $@
		cp xinitiate $@
		-@ls -gls $@
		-@echo ""

initiate:	xinitiate

xinitiate:	initiate.o report.o
		$(LDCC) $(LDFLAGS)  -o $@ initiate.o report.o $(LIBES) \
			$(LSOCKET)

l-initiate:;	$(LINT) $(LFLAGS) initiate.c ../callback/report.c $(LLIBS)


initiate.o:	$(HFILES)


##################################################################
# clean
##################################################################

clean:;		rm -f *.o x* z* _* core 

grind:;		iprint Makefile
		tgrind -lc $(HFILES) $(CFILES)

true:;