mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-26 02:12:45 -05:00
9 lines
329 B
Makefile
9 lines
329 B
Makefile
#Debug = -g
|
|
|
|
cygfuse.dll libfuse.a: cygfuse.cpp
|
|
g++ $(Debug) -shared -o cygfuse.dll -Wl,--out-implib=libfuse.a -I../../inc/fuse cygfuse.cpp
|
|
[ -n "$(Debug)" ] || strip cygfuse.dll
|
|
|
|
cygfuse-test.exe: cygfuse-test.c cygfuse.dll libfuse.a
|
|
gcc $(Debug) -o cygfuse-test.exe -I../../inc/fuse -DCYGFUSE cygfuse-test.c -L$(PWD) -lfuse
|