summaryrefslogtreecommitdiff
path: root/Makefile.win32
AgeCommit message (Collapse)AuthorFilesLines
2012-02-18build: Make 'all' the default target in the base Makefile.win32 buildAndrea Canciani1-0/+2
Having the 'inform' target as default is misleading.
2012-02-16build: Add 'clean' target to Makefile.win32 build systemAndrea Canciani1-1/+7
The Makefile.win32 in the subdirectories provide a working 'clean' target (defined in Makefile.win32.common), the central Makefile.win32 'clean' target does not do anything. Replace the noop 'clean' target with one that cleans all the subdirs.
2011-06-24perf: Fix build on win32Andrea Canciani1-0/+3
The performance tools build system for Win32 hasn't been maintained for some time. The makefiles are now structured as in other directories (Makefile.sources used by both Makefile.am and Makefile.win32) and some additional code hides os-specific parts.
2011-06-20build: Improve dependencies in win32 MakefilesAndrea Canciani1-18/+5
Test targets now explicitly depend on the cairo library and build it appropriately. Phony targets depend on inform, so that they print a warning if the environment is not set up appropriately.
2011-06-20build: Improve generation of cairo-features.h on win32Andrea Canciani1-1/+0
All of the build depends on cairo-features.h. By having a target to generate it that can be run from anywhere, it is possible to delegate the dependency handling to 'make'.
2008-09-23[Makefile.win32] Add comments about where to edit for customizationBehdad Esfahbod1-0/+3
2008-09-22[Makefile.win32] Add makefile rules to generate cairo-features.hBehdad Esfahbod1-4/+1
2008-09-22[build] Add Makefile.win32.commonBehdad Esfahbod1-55/+2
2008-09-20[Makefile.win32] Remove a few unused macro declarationsBehdad Esfahbod1-2/+0
An undefined PACKAGE_BUGREPORT is not properly handled where it's used. The other two were not being used after build system revamp.
2008-09-16[Makefile.win32] Don't declare CAIRO_NO_MUTEXBehdad Esfahbod1-1/+1
2008-08-28Move version number to src/cairo-version.hBehdad Esfahbod1-13/+2
2008-08-28Fixed cairo version in win32 makefileAntoine Azar1-3/+6
2008-08-05[win32] Update win32 build, remove gcc dependencyVladimir Vukicevic1-3/+10
2008-02-06Some fixes and improvements to the Win32 buildAzar@.(none)1-6/+26
2007-08-28[win32] Update win32 MakefilesVladimir Vukicevic1-6/+39
Happy building with msys, one location for CFLAGS/etc changes (toplevel), new pdiff makefile.
2006-09-09[win32] Makefile.win32: use correct (/MD) runtime library flag everywhereVladimir Vukicevic1-1/+2
There was a bad mix of LIBCMT (the static runtime lib) and MSVCRT (the dynamic one) before, because LIBCMT is the default. This specifies /MD everywhere.
2006-09-09[win32] Makefile.win32: fix test and add html targetsVladimir Vukicevic1-1/+12
Add html target to toplevel and test/ Makefile.win32
2006-09-09[win32] win32-specific Makefiles for building with MSVCVladimir Vukicevic1-0/+18
This patch adds a bunch of makefiles for building cairo with Visual C++. gnu make is still required, and make must be run from a command prompt that has the Visual C++ paths set up, as well as has the cygwin environment in the path. Run 'make -f Makefile.win32'.