mirror of
https://github.com/ptitSeb/box86.git
synced 2025-08-28 09:03:48 +02:00
18 lines
348 B
Makefile
18 lines
348 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DARM_DYNAREC=1 \
|
|
-DNOGIT=1
|
|
|
|
override_dh_shlibdeps:
|
|
dh_shlibdeps \
|
|
--exclude=libgcc_s.so.1 \
|
|
--exclude=libpng12.so.0 \
|
|
--exclude=libstdc++.so.5 \
|
|
--exclude=libstdc++.so.6 \
|
|
--exclude=libunwind.so.8
|