mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 11:51:25 +00:00
8 lines
219 B
Makefile
8 lines
219 B
Makefile
|
|
all: builder native
|
|
|
|
builder:
|
|
msbuild -p:Configuration=Debug BuilderMono.sln
|
|
|
|
native:
|
|
g++ -O2 --shared -g3 -o Build/libBuilderNative.so -fPIC -I Source/Native Source/Native/*.cpp Source/Native/gl_load/*.c -lX11 -ldl
|