1. Building and SVN > rev 2012
- Posted by jeremy (admin) Apr 30, 2009
- 747 views
A change was made in SVN REV 2012 that changes the build process slightly. On Unix the Makefile was renamed to Makefile.gnu. On Windows the Makefile was left Makefile.wat. The associated configure and configure.bat files copies the correct Makefile.(gnu/wat) to Makefile. Thus, for Windows, you can simply:
C:\euphoria\source> configure.bat --build build C:\euphoria\source> wmake
On Linux, you can do the same thing but you have to run configure first:
~/euphoria$ ./configure --build build ~/euphoria$ make
Jeremy
2. Re: Building and SVN > rev 2012
- Posted by bernie Apr 30, 2009
- 764 views
A change was made in SVN REV 2012 that changes the build process slightly. On Unix the Makefile was renamed to Makefile.gnu. On Windows the Makefile was left Makefile.wat. The associated configure and configure.bat files copies the correct Makefile.(gnu/wat) to Makefile. Thus, for Windows, you can simply:
C:\euphoria\source> configure.bat --build build C:\euphoria\source> wmake
On Linux, you can do the same thing but you have to run configure first:
~/euphoria$ ./configure --build build ~/euphoria$ make
Jeremy
What about the clean commands ?
3. Re: Building and SVN > rev 2012
- Posted by jeremy (admin) Apr 30, 2009
- 803 views
What about the clean commands ?
What do you mean? Oh. All the commands still exist. For instance:
C:\euphoria\source> wmake translator C:\euphoria\source> wmake interpreter C:\euphoria\source> wmake clean C:\euphoria\source> wmake distclean ... etc ...
It's simply that you do not have to specify the Makefile anymore like we had to in the past, i.e. wmake /f makefile.wat clean. The actual Makefiles didn't change.
Jeremy