07c838e4e0
git-svn-id: file:///home/svn/framework3/trunk@5660 4d416f70-5f16-0410-b530-b9f4589650da
18 lines
268 B
Makefile
18 lines
268 B
Makefile
|
|
SOURCES=testsrv.c
|
|
OPTIONS=-fno-stack-protector -Wa,--execstack -Wl,-z,execstack
|
|
|
|
default:x86_32 x86_64
|
|
all: x86_32 x86_64
|
|
|
|
x86_32:
|
|
gcc -m32 ${OPTIONS} -o testsrv32 ${SOURCES}
|
|
x86_64:
|
|
gcc -m64 ${OPTIONS} -o testsrv64 ${SOURCES}
|
|
|
|
clean:
|
|
rm testsrv32
|
|
rm testsrv64
|
|
|
|
|