Add branch switching hack to remaining Makefile.am files.
parent
32a0830d64
commit
bf38eb51ea
|
@ -74,3 +74,10 @@ noinst_HEADERS += \
|
||||||
../../framework/types.h \
|
../../framework/types.h \
|
||||||
../../framework/utf.h \
|
../../framework/utf.h \
|
||||||
../../ivis_opengl/GLee.h
|
../../ivis_opengl/GLee.h
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -7,3 +7,10 @@ sdl_testapp_SOURCES = \
|
||||||
|
|
||||||
sdl_testapp_CPPFLAGS = $(LUA_CFLAGS) $(SDL_CFLAGS) $(CAIRO_CFLAGS) -DLIB_COMPILE=1
|
sdl_testapp_CPPFLAGS = $(LUA_CFLAGS) $(SDL_CFLAGS) $(CAIRO_CFLAGS) -DLIB_COMPILE=1
|
||||||
sdl_testapp_LDADD = $(OPENGL_LIBS) $(CAIRO_LIBS) $(SDL_LIBS) $(top_builddir)/src/libbetawidget.la $(LUA_LIBS)
|
sdl_testapp_LDADD = $(OPENGL_LIBS) $(CAIRO_LIBS) $(SDL_LIBS) $(top_builddir)/src/libbetawidget.la $(LUA_LIBS)
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -18,3 +18,9 @@ if MINGW32
|
||||||
libexceptionhandler_a_SOURCES += exchndl.c
|
libexceptionhandler_a_SOURCES += exchndl.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -92,3 +92,10 @@ libframework_a_SOURCES = \
|
||||||
treap.c \
|
treap.c \
|
||||||
trig.c \
|
trig.c \
|
||||||
utf.c
|
utf.c
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -43,3 +43,10 @@ libgamelib_a_SOURCES = \
|
||||||
|
|
||||||
libgamelib_a_LIBADD = $(top_builddir)/lib/ivis_opengl/libivis_opengl.a \
|
libgamelib_a_LIBADD = $(top_builddir)/lib/ivis_opengl/libivis_opengl.a \
|
||||||
$(top_builddir)/lib/ivis_common/libivis_common.a $(top_builddir)/lib/framework/libframework.a
|
$(top_builddir)/lib/ivis_common/libivis_common.a $(top_builddir)/lib/framework/libframework.a
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -5,3 +5,10 @@ noinst_LIBRARIES = libiniparser.a
|
||||||
noinst_HEADERS = dictionary.h iniparser.h
|
noinst_HEADERS = dictionary.h iniparser.h
|
||||||
libiniparser_a_SOURCES = dictionary.c iniparser.c
|
libiniparser_a_SOURCES = dictionary.c iniparser.c
|
||||||
EXTRA_DIST = LICENSE AUTHORS
|
EXTRA_DIST = LICENSE AUTHORS
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -32,3 +32,10 @@ libivis_common_a_SOURCES = \
|
||||||
png_util.c
|
png_util.c
|
||||||
|
|
||||||
libivis_common_a_LIBADD = $(top_builddir)/lib/framework/libframework.a
|
libivis_common_a_LIBADD = $(top_builddir)/lib/framework/libframework.a
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -29,3 +29,10 @@ libminiupnpc_a_SOURCES = \
|
||||||
upnperrors.c
|
upnperrors.c
|
||||||
|
|
||||||
EXTRA_DIST = LICENCE README
|
EXTRA_DIST = LICENCE README
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -57,3 +57,10 @@ libscript_a_SOURCES = \
|
||||||
stack.c
|
stack.c
|
||||||
|
|
||||||
libscript_a_LIBADD = $(top_builddir)/lib/framework/libframework.a
|
libscript_a_LIBADD = $(top_builddir)/lib/framework/libframework.a
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -10,3 +10,10 @@ noinst_HEADERS = \
|
||||||
libsequence_a_SOURCES = \
|
libsequence_a_SOURCES = \
|
||||||
sequence.c \
|
sequence.c \
|
||||||
timer.c
|
timer.c
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -27,3 +27,10 @@ libsound_a_SOURCES = \
|
||||||
|
|
||||||
libsound_a_LIBADD = $(top_builddir)/lib/gamelib/libgamelib.a \
|
libsound_a_LIBADD = $(top_builddir)/lib/gamelib/libgamelib.a \
|
||||||
$(top_builddir)/lib/framework/libframework.a
|
$(top_builddir)/lib/framework/libframework.a
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
|
@ -29,3 +29,10 @@ libwidget_a_SOURCES = \
|
||||||
|
|
||||||
libwidget_a_LIBADD = $(top_builddir)/lib/ivis_opengl/libivis_opengl.a \
|
libwidget_a_LIBADD = $(top_builddir)/lib/ivis_opengl/libivis_opengl.a \
|
||||||
$(top_builddir)/lib/ivis_common/libivis_common.a $(top_builddir)/lib/framework/libframework.a
|
$(top_builddir)/lib/ivis_common/libivis_common.a $(top_builddir)/lib/framework/libframework.a
|
||||||
|
|
||||||
|
# HACK Don't give make errors when switching between trunk and branches.
|
||||||
|
# Works by finding the .deps/*.Po files which refer to source files that don't exist, and replacing them with a single dependency on the correct source file.
|
||||||
|
# Now with PD-ksh support.
|
||||||
|
fixbrokendependencies:
|
||||||
|
mkdir -p ".deps" ; for ext in c cpp ; do for a in `cd $(srcdir) ; echo *.$$ext` ; do fpref="`echo "$$a" | sed "s/\.$$ext//"`" ; pofile=".deps/$$fpref.Po" ; srcfile="$(srcdir)/$$a" ; if [ -e "$$srcfile" ] && ! grep -q "\b$$a\b" "$$pofile" 2> /dev/null ; then echo "$$fpref.o: $$srcfile" | tee "$$pofile" ; fi ; done ; done
|
||||||
|
all: fixbrokendependencies
|
||||||
|
|
Loading…
Reference in New Issue