* README.win32: Update gcc instructions. Remove warning about gettext being GPL, as the GIMP is GPL, too, of course, and it thus doesn't matter. * user_install.bat: Rename the template user gtkrc to gtkrc_user, to reduce user confusion. * app/main.c: Small change for gcc on Win32 compilation. * */makefile.cygwin * app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32, no need to have differently named DLLs (including modules) for (built by) gcc and MSVC. * app/module_db.c: Use g_strdup_printf() instead of strlen(), g_malloc() and g_snprintf() * libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32, the suitable gimpfeatures.h is built when making the dist. * libgimp/gimpfeatures.h.win32: Removed. * libgimp/makefile.cygwin * libgimp/makefile.msc: Remove gimpfeatures.h.win32. * libgimp/gimp.h: Win32 startup code changed a bit. * plug-ins/makefile.cygwin * plug-ins/makefile.msc: Add the winsnap unofficial plug-in. * plug-ins/common/animationplay.c * plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting clashing declarations because these guys include gdkx.h (which includes windows.h), and gimp.h also declares WinMain on its own.
53 lines
1.6 KiB
Text
53 lines
1.6 KiB
Text
## Makefile for building gimp modules with gcc -mno-cygwin
|
|
## Use: make -f makefile.cygwin
|
|
|
|
# Change this to wherever you install the gimp.
|
|
GIMP = /gimp
|
|
BIN = $(GIMP)/modules
|
|
|
|
OPTIMIZE = -O
|
|
|
|
################################################################
|
|
|
|
# Nothing much configurable below
|
|
|
|
CC = gcc -mno-cygwin -mpentium -fnative-struct
|
|
|
|
INSTALL = install
|
|
|
|
GIMP_VER = 1.1
|
|
GTK_VER = 1.3
|
|
GLIB_VER = 1.3
|
|
|
|
GLIB = ../../glib
|
|
GMODULE = $(GLIB)/gmodule
|
|
GTK = ../../gtk+
|
|
|
|
CFLAGS = $(OPTIMIZE) -DHAVE_CONFIG_H -DMODULE_COMPILATION -I. -I.. -I$(GLIB) -I$(GMODULE) -I$(GTK)/gdk/win32 -I$(GTK)
|
|
LDFLAGS = -s
|
|
|
|
MODULES = \
|
|
colorsel_gtk-$(GIMP_VER).dll \
|
|
colorsel_triangle-$(GIMP_VER).dll \
|
|
colorsel_water-$(GIMP_VER).dll
|
|
|
|
all : \
|
|
$(MODULES)
|
|
|
|
install : all
|
|
for m in $(MODULES); do $(INSTALL) $$m $(BIN); done
|
|
|
|
../config.h : ../config.h.win32
|
|
cp ../config.h.win32 $@
|
|
|
|
colorsel_gtk-$(GIMP_VER).dll : colorsel_gtk.o module.def
|
|
$(GLIB)/build-dll colorsel_gtk $(GIMP_VER) module.def colorsel_gtk.o $(LDFLAGS) -L ../app -lgimp -L $(GTK)/gtk -lgtk-$(GTK_VER) -L $(GLIB) -lgmodule-$(GLIB_VER) -lglib-$(GLIB_VER)
|
|
|
|
colorsel_triangle-$(GIMP_VER).dll : colorsel_triangle.o module.def
|
|
$(GLIB)/build-dll colorsel_triangle $(GIMP_VER) module.def colorsel_triangle.o $(LDFLAGS) -L ../app -lgimp -L $(GTK)/gtk -lgtk-$(GTK_VER) -L $(GLIB) -lgmodule-$(GLIB_VER) -lglib-$(GLIB_VER)
|
|
|
|
colorsel_water-$(GIMP_VER).dll : colorsel_water.o module.def
|
|
$(GLIB)/build-dll colorsel_water $(GIMP_VER) module.def colorsel_water.o $(LDFLAGS) -L ../app -lgimp -L $(GTK)/gtk -lgtk-$(GTK_VER) -L $(GTK)/gdk/win32 -lgdk-$(GTK_VER) -L $(GLIB) -lgmodule-$(GLIB_VER) -lglib-$(GLIB_VER)
|
|
|
|
clean:
|
|
-rm *.dll *.a *.o *.exp *.base
|