mirror of https://github.com/GNOME/gimp.git
removed hack for gimp-console compilation. automake seems to handle it
2004-07-13 Sven Neumann <sven@gimp.org> * app/Makefile.am: removed hack for gimp-console compilation. automake seems to handle it correctly all by itself.
This commit is contained in:
parent
d2b7bdc735
commit
1e7a0f341d
|
@ -1,3 +1,8 @@
|
|||
2004-07-13 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/Makefile.am: removed hack for gimp-console compilation.
|
||||
automake seems to handle it correctly all by itself.
|
||||
|
||||
2004-07-12 Michael Schumacher <schumaml@cvs.gnome.org>
|
||||
|
||||
* app/app_procs.c: added
|
||||
|
|
|
@ -5,4 +5,3 @@ makefile.mingw
|
|||
.libs
|
||||
gimp-2.1
|
||||
gimp-console-2.1
|
||||
app_procs_console.c
|
||||
|
|
|
@ -35,7 +35,8 @@ else
|
|||
bin_PROGRAMS = gimp-2.1
|
||||
endif
|
||||
|
||||
COMMON_SOURCES = \
|
||||
app_sources = \
|
||||
app_procs.c \
|
||||
app_procs.h \
|
||||
main.c \
|
||||
batch.c \
|
||||
|
@ -48,17 +49,14 @@ COMMON_SOURCES = \
|
|||
units.h \
|
||||
gimp-intl.h
|
||||
|
||||
gimp_2_1_SOURCES = \
|
||||
$(COMMON_SOURCES) \
|
||||
app_procs.c
|
||||
gimp_2_1_SOURCES = $(app_sources)
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
makefile.msc \
|
||||
gimp.rc \
|
||||
wilber.ico
|
||||
|
||||
CLEANFILES = \
|
||||
app_procs_console.c
|
||||
|
||||
if HAVE_GLIBC_REGEX
|
||||
REGEXREPL =
|
||||
|
@ -138,13 +136,10 @@ gimp_2_1_LDADD = \
|
|||
$(INTLLIBS) \
|
||||
$(REGEXREPL)
|
||||
|
||||
if ENABLE_GIMP_CONSOLE
|
||||
app_procs_console.c: $(srcdir)/app_procs.c
|
||||
cp -f $(srcdir)/app_procs.c app_procs_console.c
|
||||
|
||||
gimp_console_2_1_SOURCES = \
|
||||
$(COMMON_SOURCES) \
|
||||
app_procs_console.c
|
||||
if ENABLE_GIMP_CONSOLE
|
||||
|
||||
gimp_console_2_1_SOURCES = $(app_sources)
|
||||
|
||||
gimp_console_2_1_CPPFLAGS = \
|
||||
$(AM_CPPFLAGS) \
|
||||
|
@ -183,8 +178,10 @@ gimp_console_2_1_LDADD = \
|
|||
$(RT_LIBS) \
|
||||
$(INTLLIBS) \
|
||||
$(REGEXREPL)
|
||||
|
||||
endif
|
||||
|
||||
|
||||
install-exec-hook:
|
||||
if DEFAULT_BINARY
|
||||
cd $(DESTDIR)$(bindir) \
|
||||
|
|
Loading…
Reference in New Issue