update to ida 7.6, add builds

This commit is contained in:
2021-10-31 21:20:46 +02:00
parent e0e0f2be99
commit b1809fe2d9
1408 changed files with 279193 additions and 302468 deletions

39
idasdk76/ldr/makefile Normal file
View File

@@ -0,0 +1,39 @@
include ../allmake.mak
GOALS += loaders
.PHONY: $(GOALS)
all: $(GOALS)
#----------------------------------------------------------------------
ALLDIRS += aif
ALLDIRS += amiga
ALLDIRS += aof
ALLDIRS += aout
ALLDIRS += dos
ALLDIRS += dump
ALLDIRS += geos
ALLDIRS += hex
ALLDIRS += intelomf
ALLDIRS += mas
ALLDIRS += nlm
ALLDIRS += pef
ALLDIRS += pilot
ALLDIRS += qnx
ALLDIRS += script_ldrs
ALLDIRS += w32run
ALLDIRS-$(IDAADV) += hpsom
ALLDIRS-$(IDAADV) += javaldr
ALLDIRS-$(IDAADV) += os9
ALLDIRS-$(IDAADV) += rt11
ALLDIRS-$(IDAADV) += snes
ALLDIRS += $(ALLDIRS-1)
loaders: $(ALLDIRS)
#----------------------------------------------------------------------
.PHONY: $(ALLDIRS)
$(ALLDIRS):
$(Q)$(MAKE) -C $@
#----------------------------------------------------------------------
clean::
$(foreach dir,$(ALLDIRS),$(MAKE) -C $(dir) clean;)