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

⟦50474cafd⟧ TextFile

    Length: 671 (0x29f)
    Types: TextFile
    Names: »makefile«

Derivation

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

TextFile

# this is the makefile for iff2var

.SUFFIXES: .c++ 

# This line constructs the program name (equal to the directory name)
# jccpwd^[!!sh^M:s/.*\///g^MIPROGRAM = ^[
PROGRAM = ascii2var

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


C++FLAGS = +i $(CFLAGS)

LIBS = -lvartools -lvarc++ -lvar -liff 

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


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

# the program is linked by this line
$(PROGRAM) : $(OBJS)
	CC -o $(PROGRAM) $(CFLAGS) $(OBJS) $(LIBS) 

# the program is linted by this line
$(PROGRAM).lint : *.c 
	lint -hb *.c -lm > lint.out