Makefile 768 Bytes
#
# Makefile for RSP microcode
#

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

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

# local defs
LCDEFS = $(HW_FLAGS)

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

LDIRT = iquant.dat iquant.lst iquant.sym

HFILES = 

SFILES = iquant.s

TARGETS = iquant

iquant:	$(SFILES) ${HFILES}
	$(RSPASM) ${LCINCS} ${LCDEFS} -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.