Files
metasploit-gs/external/source/meterpreter/workspace/Makefile
T
James Lee fb43495ada meterpreter now compiles on 64-bit linux in a 32-bit chroot. still need payload handlers and some stdapi love to make it useable
git-svn-id: file:///home/svn/framework3/trunk@9468 4d416f70-5f16-0410-b530-b9f4589650da
2010-06-10 06:10:15 +00:00

16 lines
194 B
Makefile

SUBDIRS = ulibc common metsrv ext_posix_sample
subdirs:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
.PHONY:
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done