Makefile 679 Bytes
#
# Makefile for RSP microcode
#

PRDEPTH=../../../../
include $(PRDEPTH)/PRdefs

CVERSION = -ansi -wlint,-zaihv -woff 818
OPTIMIZER = -g

# local defs
LCDEFS = 
# local includes
LCINCS = -I. -I$(ROOT)/usr/include/PR -I$(ROOT)/PR/lib/libvid
LCOPTS = -fullwarn
LDOPTS = -L. -L$(ROOT)/usr/lib/PR
LDLIBS = -ll -lm
#LDLIBS = -lgu -lem -lGL -lX11


HFILES =

SFILES = trans.s

TARGETS = trans

trans:	$(SFILES) ${HFILES}
	rspasm ${LCINCS} -o $@ $(SFILES)

default: ${TARGETS}

include $(COMMONRULES)

install: default
#	$(INSTALL) -m 444 -F /usr/lib/PR $(TARGETS)
#	$(INSTALL) -m 444 -F /usr/src/PR/libvid Makefile $(SOURCES)


# DO NOT DELETE THIS LINE -- make depend depends on it.