diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-06 23:28:55 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-06 23:29:12 +0200 |
commit | 6db2752e17dc298fbb83ea63bf7666a4befd187f (patch) | |
tree | 79614aaa85cc893a5aa6690a100fde7d3baf5d68 /external/wine/makefile.mk | |
parent | 710f5dd271572b0f0362857c3f13ef25b6301bfe (diff) |
Newer mingw-w64 has gdiplus headers, though a bit buggy
Change-Id: Ibc25c621c0a97c11b617e920494cd311449c04d3
Diffstat (limited to 'external/wine/makefile.mk')
-rw-r--r-- | external/wine/makefile.mk | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/external/wine/makefile.mk b/external/wine/makefile.mk deleted file mode 100644 index 57f1c1c6f32c..000000000000 --- a/external/wine/makefile.mk +++ /dev/null @@ -1,26 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -PRJ=.. -PRJNAME=external -TARGET=gdiplus - -.INCLUDE : settings.mk - -.IF "$(OS)$(COM)" == "WNTGCC" - -ALL: - -$(MKDIRHIER) $(OUT)/inc/wine - cp include/* $(OUT)/inc/wine - for L in gdiplus msi urlmon; do $(DLLTOOL) --kill-at --input-def lib/$$L.def --dllname=$$L.dll --output-lib=$(OUT)/lib/lib$$L.dll.a; done -.ENDIF - -.INCLUDE : target.mk - -# vim: set noet sw=4 ts=4: |