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

⟦f2fec271c⟧ TextFile

    Length: 368 (0x170)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

OBJS=asm.o instructions.o pseudos.o data.o
V=6502
CFLAGS=-O

asm:    $(OBJS)
	cc $(OBJS) -o asm

$(OBJS):  asm.h

data.o: ops.h

ops.h: $V_ops.h makeops
	makeops <$V_ops.h >ops.h

makeops: makeops.o
	cc makeops.o -o makeops

clean:
	rm -f asm makeops ops.h *.o dist_asm*

distrib: clean
	shar README Makefile *.c *.[1-9] > dist_asm1
	shar *.h > dist_asm2
	ls -l dist*