9 lines
221 B
Makefile
9 lines
221 B
Makefile
configure_cmake:
|
|
cmake -B build ./physfs
|
|
build_physfs: configure_cmake
|
|
cmake --build build --config Release -j8
|
|
libphysfs.a: build_physfs
|
|
cp ./build/libphysfs.a .
|
|
libphysfs.so: build_physfs
|
|
cp ./build/libphysfs.so* .
|