Files
metasploit-gs/external/source/meterpreter/workspace/Makefile
T
HD Moore 41121f5870 Major merge of Meterpreter POSIX codebase from JR, Win32 projects may need a few more fixes to work properly
git-svn-id: file:///home/svn/framework3/trunk@6949 4d416f70-5f16-0410-b530-b9f4589650da
2009-08-10 02:02:16 +00:00

14 lines
192 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