#
# Aztec C makefile for building the ARexx function library called
# 'rexxhs.library'.
#

.c.o:
	cc $(CFLAGS) -o $@ $*.c

.asm.o:
	as -icc:asm -o $@ $*.asm

#
# Important: don't change these flags unless you know what you're doing!
# In particular, -sn and -so cause problems...
#
CFLAGS=-r6 -safmpr

#
# Add your object files here.
#

OBJ = libstart.o libsup.o aztecglue.o rexxhs.o

rexxhs.library: $(OBJ)
    ln -o rexxhs.library $(OBJ) -lc

install:
    copy rexxhs.library libs:

clean:
    delete rexxhs.library
