# Mklib 1.0 - a source file generator for Amiga shared libraries
# copyright 1988 Edwin Hoogerbeets
#
# This software is freely redistributable as long as there is no charge
# beyond resonable copy fees and as long as this notice stays intact.
#
# Thanks to Jimm Mackraz for Elib on Fish 87, from which much of this
# program is lifted. Also thanks to Neil Katin for his mylib.asm upon
# which elib is based.

CFLAGS=-Z20000
OBJS=mklib.o text.o

mklib: $(OBJS)
        ln $(OBJS) -led -lc -o mklib
