mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 05:14:45 +00:00
2e10ec3e21
Minor fixed and changes for the new release.
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
===================================
|
|
COMPILATION
|
|
===================================
|
|
|
|
Before compile, you have to configure how to compile ASE, what
|
|
libraries are available, release-debug-profile mode, etc. You can
|
|
run the "fix.sh" script, answer some questions and done: the main
|
|
makefile is created, just do
|
|
|
|
make
|
|
|
|
Or you could edit the "makefile.cfg", uncomment CONFIGURED=1 and
|
|
uncomment the necessary options, and then run
|
|
|
|
makefile -f makefile.lnx
|
|
|
|
For MinGW, edit the "makefile.cfg" file, and then
|
|
|
|
makefile -f makefile.mgw
|
|
|
|
|
|
===================================
|
|
INSTALLATION
|
|
===================================
|
|
|
|
After compilation, you have two options:
|
|
|
|
1) Running ASE from its source directory.
|
|
|
|
2) Install ASE in the directory that you specified in the "fix.sh" question:
|
|
"Where do you want install ASE by default?" (generally "/usr/local")
|
|
(in the "makefile.cfg", it's the DEFAULT_PREFIX variable)
|
|
|
|
Run "make install" (it only works in Unix like systems)
|
|
|
|
|
|
===================================
|
|
UNINSTALLATION
|
|
===================================
|
|
|
|
Run "make uninstall".
|
|
|
|
|
|
===================================
|
|
SUBVERSION
|
|
===================================
|
|
|
|
If you downloaded ASE from the Subversion repository, after
|
|
updating I recommend you to do:
|
|
|
|
~/ase-trunk/$ make clean
|
|
~/ase-trunk/$ ./fix.sh
|
|
~/ase-trunk/$ make
|
|
|
|
Also, you can make dependencies of the files (if you are trying to
|
|
hack the ASE source code):
|
|
|
|
~/ase-trunk/$ sh misc/deps.sh
|