Makefile
517 Bytes
#
# Makefile for Sample Cell conversion tool
#
include $(WORKAREA)/PR/PRdefs
#LC++OPTS = -mips2 -fullwarn -G 0
LC++INCS = -I. -I$(ROOT)/usr/include/PR -I ../lib
LLDLIBS= -L $(ROOT)/usr/lib -L $(ROOT)/usr/lib/PR -L ../lib -lbank -lgen
C++FILES = \
instfile.c++ \
sccvt.c++
OPTIMIZER = -g
TARGETS=sccvt
LCOPTS =-fullwarn
#LLDLIBS=-lm
default: $(TARGETS)
include $(COMMONRULES)
sccvt: ${OBJECTS} Makefile
$(C++F) ${OBJECTS} $(LDFLAGS) -o $@
install exports: default
$(INSTALL) -F /usr/sbin/ $(TARGETS)