summaryrefslogtreecommitdiff
path: root/amiga/Makefile.target
Commit message (Collapse)AuthorAgeFilesLines
* Add basic context-sensitive help.Chris Young2013-01-241-2/+3
|
* OS3 needs PBL tooChris Young2013-01-171-1/+1
|
* move common include path setup to core MakefileVincent Sanders2012-12-201-1/+1
|
* make macro name more correctVincent Sanders2012-12-131-6/+6
|
* Remove libxmlJohn-Mark Bell2012-11-101-4/+4
|
* Port save complete to libdom.John-Mark Bell2012-11-031-1/+1
|
* Merge Vincent's Javascript work onto masterDaniel Silverstone2012-11-031-4/+0
|\
| * Ensure that we turn on JS sources if either of USE_JS or USE_MOZJS is triggeredDaniel Silverstone2012-11-021-4/+0
| |
* | Remove languages that only have messages filesRob Kendrick (fatigue)2012-11-031-1/+1
| |
* | Create split messages files earlierRob Kendrick (fatigue)2012-11-031-1/+1
| |
* | Have FatMessages macro mkdir -p the destination directory, and have Amiga ↵Rob Kendrick (fatigue)2012-11-031-1/+1
| | | | | | | | front end use macro
* | Drop the two different names for the executableChris Young2012-10-311-9/+2
|/
* Revert "Revert "Link against libiconv""John-Mark Bell2012-10-211-1/+1
| | | | This reverts commit 02996802d92a76f380a9db4d7e138b91d8d06014.
* Revert "Link against libiconv"John-Mark Bell2012-10-201-1/+1
| | | | This reverts commit aa3760bd550fe2a625947828fb7847693657aba2.
* Link against libiconvJohn-Mark Bell2012-10-201-1/+1
|
* for native builds, temporarily revert usage of pkg-config for cairo detectionChris Young2012-10-141-4/+4
|
* appears that we don't actually need to use dynamic linking for cairoChris Young2012-10-131-1/+0
|
* remove unneeded manual cairo ldflags etcChris Young2012-10-131-2/+2
|
* auto-detect cairoChris Young2012-10-131-5/+5
|
* use pkgconfigChris Young2012-10-131-2/+4
|
* allow cross-compiling Cairo buildChris Young2012-10-131-1/+7
|
* don't need libcaresChris Young2012-10-121-2/+2
|
* use libtre instead of libregex for native builds, same as cross-compileChris Young2012-10-121-2/+4
|
* Preserve the executable attribute, and ensure we copy the correct binary in ↵Chris Young2012-10-111-1/+1
| | | | all scenarios
* libjpeg.so.12 is the current versionChris Young2012-09-221-1/+1
|
* Expor tthe correct messages when packagingChris Young2012-09-091-1/+3
|
* Split install and package targets.Vincent Sanders2012-08-231-2/+8
| | | | Install target is for installing on the local machine and package generates a package
* pedantic makefile spacingChris Young2012-08-181-2/+2
|
* add install files required for Cairo build. (native build only)Chris Young2012-08-181-1/+11
|
* copy missing fileChris Young2012-08-161-0/+1
|
* make install target for Amiga. Target is NetSurf_Amiga/netsurf.lhaChris Young2012-08-151-0/+32
|
* Need libdom, libpbl when cross compiling.John-Mark Bell2012-08-051-3/+3
|
* Correct library name. Update versions to 1.7.Chris Young2012-07-071-1/+1
|
* Add lines to enable building against Spidermonkey 1.5 or 1.8.5Chris Young2012-06-301-0/+6
| | | | svn path=/trunk/netsurf/; revision=14015
* Integrate Unicode font scanner into NetSurf.Chris Young2012-05-051-1/+1
| | | | | | | | NetSurf will now use any available font when trying to print characters that are missing from the current font. TODO: Preferred font list. svn path=/trunk/netsurf/; revision=13905
* fix buildChris Young2012-03-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=13729
* option_screen_compositing to enable switching compositing for NetSurf's ownChris Young2012-02-241-1/+1
| | | | | | | | | | | | | | | | | | | screen on/off. Some experimentation with compositing and simple/smart refresh reveals that simple refresh windows with compositing on for the screen behave the same as smart refresh windows. Smart refresh windows with compositing off use more gfx memory than when compositing is on. Simple refresh windows with compositing off will probably be more memory efficient, as we are using an off-screen bitmap to render the browsing area anyway. However due to this bitmap being re-used over multiple tabs/windows, it does not always reflect what should be on the window, so performing a redraw of damaged areas may be the only option. Need to read damaged regions from layer (probably through struct Region *DamageList) and check on performance vs memory or make the window refresh type configurable. Simple refresh code #ifdefed out for now for further investigation later. svn path=/trunk/netsurf/; revision=13464
* Stop ELF binary sections aligning to 64K boundariesChris Young2011-12-241-1/+3
| | | | svn path=/trunk/netsurf/; revision=13343
* Start to consolidate user file operation into one fileChris Young2011-10-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=13062
* Build Cairo version as NetSurf; non-Cairo version as NetSurf-StaticChris Young2011-09-261-2/+2
| | | | | | | Don't bother to build/copy NetSurf-Static for release packages Update .readme to show requirement for AmigaOS 4.1 svn path=/trunk/netsurf/; revision=12893
* Search for librosprite when cross compiling for Amiga platformsJohn Mark Bell2011-09-021-0/+1
| | | | svn path=/trunk/netsurf/; revision=12699
* make image content handlers build conditional from teh makefileVincent Sanders2011-08-281-2/+4
| | | | svn path=/trunk/netsurf/; revision=12673
* Sound DataTypes implementation. Currently has no interface, so onlyChris Young2011-06-051-1/+1
| | | | | | autoplay/autoStart objects will play. svn path=/trunk/netsurf/; revision=12466
* Experimental/incomplete/non-functional content handlers (files required for ↵Chris Young2011-05-091-1/+1
| | | | | | | | NetSurf to compile from trunk) svn path=/trunk/netsurf/; revision=12361
* Rename DataTypes related code/files/defines to avoid confusion and aid ↵Chris Young2011-05-061-3/+4
| | | | | | | | | | adding support for other DataType classes. Disable MNG/WebP by default as they aren't common and the required libs are quite large; DataTypes can handle these formats for now. svn path=/trunk/netsurf/; revision=12284
* Merge branches/jmb/content-factory to trunkJohn Mark Bell2011-05-061-1/+3
| | | | svn path=/trunk/netsurf/; revision=12283
* Update to use official libwebp 0.1Chris Young2011-03-201-1/+1
| | | | | | Remove libvpx references as no longer needed. svn path=/trunk/netsurf/; revision=12115
* Fix up pkg-config package ordering to ensure that libcares appears after ↵John Mark Bell2011-03-091-2/+4
| | | | | | | | libcurl in the link line Link against libauto when cross compiling for AmigaOS4 svn path=/trunk/netsurf/; revision=11957
* Need __USE_INLINE__ and __USE_BASETYPE__ for AmigaOS4John Mark Bell2011-03-091-3/+11
| | | | | | Only link against libiconv if building for AmigaOS3 svn path=/trunk/netsurf/; revision=11955
* Buildsystem hackery to support cross compiling for AmigaOS4John Mark Bell2011-03-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=11952