Makefile
487 Bytes
#
# Makefile for host-side interface to standalone debugger environment.
#
PRDEPTH = ../..
include $(PRDEPTH)/PRdefs
TARGETS=libdg.a
LASOPTS= -G 0
LCOPTS = -G 0 -g
LCINCS = -I. -I$(PRDEPTH)/include -I$(PRDEPTH)/diags/include \
-I$(PRDEPTH)/debugger/rk_include -I$(ROOT)/usr/include
OBJECTS = \
dbg_comm.o \
dg_utils.o
libdg.a: $(OBJECTS)
$(AR) rc $@ $(OBJECTS)
default: $(TARGETS)
include $(COMMONRULES)
exports install: default
$(INSTALL) -m 444 -F /usr/lib/PR $(TARGETS)