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

⟦0580e005e⟧ TextFile

    Length: 667 (0x29b)
    Types: TextFile
    Names: »makefile«

Derivation

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

TextFile

# this is the makefile for the var library

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

.SUFFIXES: .c++ 


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

C++FLAGS = +i $(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 = \
	double_image.o \
	image.o \
	long_image.o \
	var_double_image.o \
	var_image.o \
	var_long_image.o 


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

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