Makefile 793 Bytes
TARGETS=mdump rsp2elf lst2imem d2elf

default all:	$(TARGETS)

mdump:	mdump.c
	$(CC) -g -o mdump mdump.c

umakerom:	umakerom.c
	$(CC) -g -o umakerom -I$(ROOT)/PR/include umakerom.c

rsp2elf:	rsp2elfm.o rsp2elfd.o rsp2elff.o rsp2elfu.o
	CC -g -o rsp2elf rsp2elfm.o rsp2elfd.o rsp2elff.o rsp2elfu.o

lst2imem:	lst2imem.cxx
	CC -g -o lst2imem lst2imem.cxx

d2elf:	d2elf.cxx rsp2elf.h
	CC -g -O -o d2elf d2elf.cxx

rsp2elfm.o:	rsp2elfm.cxx rsp2elf.h
	CC -c -g rsp2elfm.cxx

rsp2elfd.o:	rsp2elfd.cxx rsp2elf.h
	CC -c -g rsp2elfd.cxx

rsp2elff.o:	rsp2elff.cxx rsp2elf.h
	CC -c -g rsp2elff.cxx

rsp2elfu.o:	rsp2elfu.cxx rsp2elf.h
	CC -c -g rsp2elfu.cxx

clobber:
	-rm -f *.o mdump rsp2elf lst2imem umakerom

clean:
	-rm -f *.o

exports install: ${TARGETS}
	$(INSTALL) -m 555 -F /usr/sbin $(TARGETS)