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: ┃ M T

⟦efb21d21c⟧ TextFile

    Length: 642 (0x282)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# Makefile to make z80 macro assembler.
CFLAGS =

all:	zmac zdis

zmac:	y.tab.o mio.o
	cc $(CFLAGS) -o zmac y.tab.o mio.o

y.tab.c: zmac.y
	yacc zmac.y

zdis:	zdis.o
	cc $(CFLAGS) -o zdis zdis.o

install:
	install -s zmac /usr/local/bin
	install -s zdis /usr/local/bin

install_man:
	cp zmac.1 /usr/man/manl/zmac.l
	cp zdis.1 /usr/man/manl/zdis.l

clean:
	rm -f zdis.o zmac.o mio.o y.tab.c y.tab.o a.out core

shar: zmac.shar.1 zmac.shar.2

zmac.shar.1: Makefile zmac.y mio.c zmac.1 zdis.1
	shar -vc Makefile zmac.y mio.c zmac.1 zdis.1 > zmac.shar.1

zmac.shar.2: zdis.c serial.z serial.hex
	shar -vc zdis.c serial.z serial.hex > zmac.shar.2