* define EAPI on Windows according to the following scheme:
[profile/ivi/eet.git] / INSTALL
1 COMPILING and INSTALLING:
2
3 If you got a official release tar archive do:
4     ./configure
5
6 ( otherwise if you got this from enlightenment cvs do: ./autogen.sh )
7
8 Then to compile:
9     make
10
11 To install (run this as root, or the user who handles installs):
12     make install
13
14 NOTE: You MUST make install Eet for it to run properly.
15
16 NOTE: For compilation with MinGW, fnmatch.h is probably missing.
17       That file can be found here:
18 http://www.koders.com/c/fid2B518462CB1EED3D4E31E271DB83CD1582F6EEBE.aspx
19       It should be installed in the mingw include directory.
20
21 NOTE: For compilation with mingw32ce, run configure with the option
22
23 --host=arm-wince-mingw32ce
24
25 NOTE: For compilation with cegcc, you have to do the following steps:
26
27 1) After having run autogen.sh, add in config.sub file:
28
29         cegcc)
30                 basic_machine=arm-unknown
31                 os=-cegcc
32                 ;;
33
34 after the mingw32ce case
35
36 2) in config.sub, add -cegcc* after -pe*. You should have a line like:
37               | -cygwin* | -pe* | -cegcc* | -psos* | -moss* | -proelf* | -rtems* \
38
39 3) run configure with the option
40
41 --host=arm-wince-cegcc