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 - download
Index: ┃ T m

⟦c0a57b0ad⟧ TextFile

    Length: 641 (0x281)
    Types: TextFile
    Names: »makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/image/vartools/makefile« 

TextFile

# this is the makefile for the vartools library

# This line constructs the library name (equal to the directory name)
# jccpwd^[!!sh^M:s/.*\///g^MILIBRARY = lib^[A.a^[
LIBRARY = libvartools.a

.SUFFIXES: .c++ 


CFLAGS = -O -I/usr/grads/include

C++FLAGS = -Fi $(CFLAGS)

LIBS = -liff -lC

# This line constructs the list of possible objects
# 2jc}ls *[A-Za-z0-9].c *.c++^[!!sh^M>}>}:g/\.c\+*$/ s//.o \\/^M
OBJS = \
	ascii2var.o \
	cap.o \
	correlate.o \
	scale.o \
	trunc.o \
	var2ascii.o 


.c++.o:
	c++ -c  $(C++FLAGS) $*.c++ 

# the library is constructed by this line
$(LIBRARY) : $(OBJS)
	ar qv $(LIBRARY) $(OBJS)
	ranlib $(LIBRARY)