diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-09-22 19:43:08 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-09-22 20:11:38 -0400 |
commit | 0ac7a242f829bd31fd7fe12e886fba687ea6dc5e (patch) | |
tree | 42f3a2521d4c2ada6d5bf5677534cd334b553838 /src/Makefile.win32 | |
parent | 984320dff11d42d698ff5355c6befe0c5d32df59 (diff) |
[build] Add Makefile.win32.common
Diffstat (limited to 'src/Makefile.win32')
-rw-r--r-- | src/Makefile.win32 | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/src/Makefile.win32 b/src/Makefile.win32 index b57478db6..6f4e89d85 100644 --- a/src/Makefile.win32 +++ b/src/Makefile.win32 @@ -1,7 +1,6 @@ -SUBMAKEFILE = 1 - -include ../Makefile.win32 -include Makefile.win32.config +top_srcdir = .. +include $(top_srcdir)/build/Makefile.win32.common +include Makefile.win32.features SOURCES = $(enabled_cairo_sources) @@ -19,19 +18,3 @@ $(CFG)/cairo.dll: $(OBJECTS) $(CFG)/cairo-static.lib: $(OBJECTS) $(STATIC_OBJECTS) lib -NOLOGO -OUT:$@ $(PIXMAN_LIBS) $(OBJECTS) $(STATIC_OBJECTS) - -clean: - @rm -f $(CFG)/*.obj $(CFG)/*.dll $(CFG)/*.lib $(CFG)/*.pdb $(CFG)/*.ilk || exit 0 - -inform: -ifneq ($(CFG),release) -ifneq ($(CFG),debug) - @echo "Invalid configuration "$(CFG)" specified." - @echo -n "You must specify a configuration when " - @echo "running make, e.g. make CFG=debug" - @echo - @echo -n "Possible choices for configuration are " - @echo "'release' and 'debug'" - @exit 1 -endif -endif |