Files
metasploit-gs/external/source/meterpreter/workspace/ext_posix_sample/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

16 lines
266 B
Makefile

VPATH=../../source/extensions/posix_sample
CFLAGS= -fPIC -Os -I../../source/common -I../../source/openssl/include -D_UNIX
objects = test.o
all: posix_sample.so
posix_sample.so: test.o
$(LD) -Bshareable -o $@ $(objects)
.PHONY: clean
clean:
rm -f *.o *.so *~