Changeset 67:419761c8d9b9
- Timestamp:
- 02/23/11 01:48:51 (15 months ago)
- Author:
- Emmanuel Gil Peyrot <linkmauve@…>
- Branch:
- default
- Message:
-
Add configure option to build scn2kdump.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r52
|
r67
|
|
| 33 | 33 | Just type './configure' followed by 'make'. |
| 34 | 34 | If you want to build nwatowav (an utility to convert background musics to wav files), add '--enable-nwatowav' to the './configure' call. |
| 35 | | Same with visarc (an utility to extract some data, such as the graphics files). |
| | 35 | Same with visarc (an utility to extract some data, such as the graphics files) and scn2kdump (an utility to dump all data from a scenario file). |
| 36 | 36 | |
| 37 | 37 | Type 'make install' to install OtakuNoRaifu. |
-
|
r64
|
r67
|
|
| 141 | 141 | fi |
| 142 | 142 | |
| | 143 | AC_ARG_ENABLE(scn2kdump, |
| | 144 | AS_HELP_STRING([--enable-scn2kdump], [Build the scn2kdump utility (default no)])) |
| | 145 | if test X$enable_scn2kdump = X"yes"; then |
| | 146 | AC_SUBST(SCN2KDUMP, ['scn2kdump${EXEEXT}']) |
| | 147 | fi |
| | 148 | |
| 143 | 149 | AC_ARG_ENABLE(visarc, |
| 144 | 150 | AS_HELP_STRING([--enable-visarc], [Build the visarc utility (default no)])) |
-
|
r56
|
r67
|
|
| 7 | 7 | scn2k.h scn2k_impl.h |
| 8 | 8 | |
| | 9 | bin_PROGRAMS = $(SCN2KDUMP) |
| 9 | 10 | EXTRA_PROGRAMS = scn2kdump |
| 10 | 11 | |