view leo-obj/l1_custom_int/Makefile @ 195:ed7318a03e0c

pirelli/vctcxo: VCTCXO connections traced out
author Michael Spacefalcon <falcon@ivan.Harhan.ORG>
date Sun, 11 Jan 2015 04:33:48 +0000
parents 5fb64a7c3f92
children
line wrap: on
line source

OBJS=	ind_os.obj l1_cust.obj
TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) $(patsubst %.obj,%.ctypes,${OBJS})
TOOL=	../tool/tiobjd

all:	${TARGETS}

%.disasm:	%.obj %.hints
	${TOOL} $*.obj disasm -gl -h $*.hints > $@

%.disasm:	%.obj
	${TOOL} $*.obj disasm -gl > $@

%.ctypes:	%.obj
	${TOOL} $*.obj ctypes -o > $@

${TARGETS}:	${TOOL} Makefile

clean:
	rm -f *.disasm *.ctypes