FreeCalypso > hg > freecalypso-reveng
diff leo-obj/l1_pei/Makefile @ 189:e7c5841e2f8f
leo-obj/l1_pei: added and analyzed
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 17 Aug 2014 22:49:48 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/leo-obj/l1_pei/Makefile Sun Aug 17 22:49:48 2014 +0000 @@ -0,0 +1,16 @@ +OBJS= l1_pei.obj l1_pei_version.obj +TARGETS=$(patsubst %.obj,%.disasm,${OBJS}) +TOOL= ../tool/tiobjd + +all: ${TARGETS} + +%.disasm: %.obj %.hints + ${TOOL} $*.obj disasm -h $*.hints > $@ + +%.disasm: %.obj + ${TOOL} $*.obj disasm > $@ + +${TARGETS}: ${TOOL} Makefile + +clean: + rm -f *.disasm