Commit 8c1cd7c Jehan
committed
1 parent 0bf1f22 commit 8c1cd7c Copy full SHA for 8c1cd7c
File tree 11 files changed +23
-21
lines changed
11 files changed +23
-21
lines changed Original file line number Diff line number Diff line change 1
1
# Version resources for Microsoft Windows
2
2
3
- GIMPPLUGINRC = $(top_srcdir )/build/windows/gimp-plug-ins.rc
3
+ GIMPPLUGINRC = $(top_builddir )/build/windows/gimp-plug-ins.rc
4
4
5
5
%.rc.o:
6
6
$(WINDRES) --define ORIGINALFILENAME_STR="$*$(EXEEXT)" \
7
7
--define INTERNALNAME_STR="$*" \
8
8
--define TOP_SRCDIR="$(top_srcdir)" \
9
9
-I$(top_srcdir)/app \
10
+ -I$(top_builddir)/app \
10
11
$(GIMPPLUGINRC) $@
Original file line number Diff line number Diff line change 1
1
# Version resources for Microsoft Windows
2
2
3
- GIMPAPPRC = $(top_srcdir )/build/windows/gimp.rc
3
+ GIMPAPPRC = $(top_builddir )/build/windows/gimp.rc
4
4
5
5
%.rc.o:
6
6
$(WINDRES) --define ORIGINALFILENAME_STR="$*$(EXEEXT)" \
7
7
--define INTERNALNAME_STR="$*" \
8
8
--define TOP_SRCDIR="$(top_srcdir)" \
9
9
-I$(top_srcdir)/app \
10
+ -I$(top_builddir)/app \
10
11
$(GIMPAPPRC) $@
Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ endif
19
19
if OS_WIN32
20
20
gimp_def = gimp.def
21
21
gimpui_def = gimpui.def
22
- libgimp_export_symbols = -export-symbols gimp.def
23
- libgimpui_export_symbols = -export-symbols gimpui.def
22
+ libgimp_export_symbols = -export-symbols $( srcdir ) / gimp.def
23
+ libgimpui_export_symbols = -export-symbols $( srcdir ) / gimpui.def
24
24
25
25
install-libtool-import-lib :
26
26
$(INSTALL ) .libs/libgimp-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
27
27
$(INSTALL ) .libs/libgimpui-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
28
- $(INSTALL ) gimp.def $(DESTDIR )$(libdir )
29
- $(INSTALL ) gimpui.def $(DESTDIR )$(libdir )
28
+ $(INSTALL ) $( srcdir ) / gimp.def $(DESTDIR )$(libdir )
29
+ $(INSTALL ) $( srcdir ) / gimpui.def $(DESTDIR )$(libdir )
30
30
31
31
uninstall-libtool-import-lib :
32
32
-rm $(DESTDIR )$(libdir ) /libgimp-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ endif
12
12
if OS_WIN32
13
13
ole32_lib = -lole32
14
14
gimpbase_def = gimpbase.def
15
- libgimpbase_export_symbols = -export-symbols gimpbase.def
15
+ libgimpbase_export_symbols = -export-symbols $( srcdir ) / gimpbase.def
16
16
17
17
install-libtool-import-lib :
18
18
$(INSTALL ) .libs/libgimpbase-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
19
- $(INSTALL ) gimpbase.def $(DESTDIR )$(libdir )
19
+ $(INSTALL ) $( srcdir ) / gimpbase.def $(DESTDIR )$(libdir )
20
20
21
21
uninstall-libtool-import-lib :
22
22
-rm $(DESTDIR )$(libdir ) /libgimpbase-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ endif
13
13
14
14
if OS_WIN32
15
15
gimpcolor_def = gimpcolor.def
16
- libgimpcolor_export_symbols = -export-symbols gimpcolor.def
16
+ libgimpcolor_export_symbols = -export-symbols $( srcdir ) / gimpcolor.def
17
17
18
18
install-libtool-import-lib :
19
19
$(INSTALL ) .libs/libgimpcolor-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
20
- $(INSTALL ) gimpcolor.def $(DESTDIR )$(libdir )
20
+ $(INSTALL ) $( srcdir ) / gimpcolor.def $(DESTDIR )$(libdir )
21
21
22
22
uninstall-libtool-import-lib :
23
23
-rm $(DESTDIR )$(libdir ) /libgimpcolor-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ endif
10
10
11
11
if OS_WIN32
12
12
gimpconfig_def = gimpconfig.def
13
- libgimpconfig_export_symbols = -export-symbols gimpconfig.def
13
+ libgimpconfig_export_symbols = -export-symbols $( srcdir ) / gimpconfig.def
14
14
15
15
install-libtool-import-lib :
16
16
$(INSTALL ) .libs/libgimpconfig-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
17
- $(INSTALL ) gimpconfig.def $(DESTDIR )$(libdir )
17
+ $(INSTALL ) $( srcdir ) / gimpconfig.def $(DESTDIR )$(libdir )
18
18
19
19
uninstall-libtool-import-lib :
20
20
-rm $(DESTDIR )$(libdir ) /libgimpconfig-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ endif
13
13
14
14
if OS_WIN32
15
15
gimpmath_def = gimpmath.def
16
- libgimpmath_export_symbols = -export-symbols gimpmath.def
16
+ libgimpmath_export_symbols = -export-symbols $( srcdir ) / gimpmath.def
17
17
18
18
install-libtool-import-lib :
19
19
$(INSTALL ) .libs/libgimpmath-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
20
- $(INSTALL ) gimpmath.def $(DESTDIR )$(libdir )
20
+ $(INSTALL ) $( srcdir ) / gimpmath.def $(DESTDIR )$(libdir )
21
21
22
22
uninstall-libtool-import-lib :
23
23
-rm $(DESTDIR )$(libdir ) /libgimpmath-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change 9
9
10
10
if OS_WIN32
11
11
gimpmodule_def = gimpmodule.def
12
- libgimpmodule_export_symbols = -export-symbols gimpmodule.def
12
+ libgimpmodule_export_symbols = -export-symbols $( srcdir ) / gimpmodule.def
13
13
14
14
install-libtool-import-lib :
15
15
$(INSTALL ) .libs/libgimpmodule-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
16
- $(INSTALL ) gimpmodule.def $(DESTDIR )$(libdir )
16
+ $(INSTALL ) $( srcdir ) / gimpmodule.def $(DESTDIR )$(libdir )
17
17
18
18
uninstall-libtool-import-lib :
19
19
-rm $(DESTDIR )$(libdir ) /libgimpmodule-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ endif
11
11
12
12
if OS_WIN32
13
13
gimpthumb_def = gimpthumb.def
14
- libgimpthumb_export_symbols = -export-symbols gimpthumb.def
14
+ libgimpthumb_export_symbols = -export-symbols $( srcdir ) / gimpthumb.def
15
15
16
16
install-libtool-import-lib :
17
17
$(INSTALL ) .libs/libgimpthumb-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
18
- $(INSTALL ) gimpthumb.def $(DESTDIR )$(libdir )
18
+ $(INSTALL ) $( srcdir ) / gimpthumb.def $(DESTDIR )$(libdir )
19
19
20
20
uninstall-libtool-import-lib :
21
21
-rm $(DESTDIR )$(libdir ) /libgimpthumb-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ endif
15
15
16
16
if OS_WIN32
17
17
gimpwidgets_def = gimpwidgets.def
18
- libgimpwidgets_export_symbols = -export-symbols gimpwidgets.def
18
+ libgimpwidgets_export_symbols = -export-symbols $( srcdir ) / gimpwidgets.def
19
19
20
20
install-libtool-import-lib :
21
21
$(INSTALL ) .libs/libgimpwidgets-$(GIMP_API_VERSION ) .dll.a $(DESTDIR )$(libdir )
22
- $(INSTALL ) gimpwidgets.def $(DESTDIR )$(libdir )
22
+ $(INSTALL ) $( srcdir ) / gimpwidgets.def $(DESTDIR )$(libdir )
23
23
24
24
uninstall-libtool-import-lib :
25
25
-rm $(DESTDIR )$(libdir ) /libgimpwidgets-$(GIMP_API_VERSION ) .dll.a
Original file line number Diff line number Diff line change @@ -45,4 +45,4 @@ LDADD = \
45
45
$(INTLLIBS )
46
46
47
47
winsnap-win32res.o : winsnap.rc select.cur small.ico winsnap.ico
48
- $(WINDRES ) winsnap.rc winsnap-win32res.o
48
+ $(WINDRES ) $( srcdir ) / winsnap.rc winsnap-win32res.o
You can’t perform that action at this time.
0 commit comments