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

⟦653768736⟧ TextFile

    Length: 503 (0x1f7)
    Types: TextFile
    Names: »makemsc«

Derivation

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

TextFile

#----------------------------------------------------------------------
#  MAKEFILE for PREP, msc version, (Kneller make)
#-----------------------------------------------------------------------

LINKFLAGS = /stack:10000
LIBS      = c:\lib\\

COBJS     = prep.obj flow.obj vec.obj misc.obj

.SUFFIXES : 
.SUFFIXES : .exe .obj .c

prep.exe :: $(COBJS) macro.obj
	@link $<, $@, NUL, $(LIBS) $(LINKFLAGS)

.c.obj :
	msc $* /AS;

$(COBJS) :: prep.h  prepdf.h $*.c

macro.obj :: prep.h prepdf.h macro.h $*.c