41121f5870
git-svn-id: file:///home/svn/framework3/trunk@6949 4d416f70-5f16-0410-b530-b9f4589650da
16 lines
266 B
Makefile
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 *~
|