Changeset 67:419761c8d9b9

Show
Ignore:
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:
3 modified

Legend:

Unmodified
Added
Removed
  • README

    r52 r67  
    3333Just type './configure' followed by 'make'. 
    3434If 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). 
     35Same 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). 
    3636 
    3737Type 'make install' to install OtakuNoRaifu. 
  • configure.ac

    r64 r67  
    141141fi 
    142142 
     143AC_ARG_ENABLE(scn2kdump, 
     144    AS_HELP_STRING([--enable-scn2kdump], [Build the scn2kdump utility (default no)])) 
     145if test X$enable_scn2kdump = X"yes"; then 
     146    AC_SUBST(SCN2KDUMP, ['scn2kdump${EXEEXT}']) 
     147fi 
     148 
    143149AC_ARG_ENABLE(visarc, 
    144150    AS_HELP_STRING([--enable-visarc], [Build the visarc utility (default no)])) 
  • scn2k/Makefile.am

    r56 r67  
    77                     scn2k.h scn2k_impl.h 
    88 
     9bin_PROGRAMS = $(SCN2KDUMP) 
    910EXTRA_PROGRAMS = scn2kdump 
    1011