Bug #4190: Add a rule for 'make relink' since automake sucks.
This commit is contained in:
parent
8fc4ea8620
commit
6798fd0170
|
@ -4,6 +4,11 @@
|
||||||
Nuke unsupported NDBM routines. Shrink the hash table a bit, over
|
Nuke unsupported NDBM routines. Shrink the hash table a bit, over
|
||||||
25% of the buckets were going empty.
|
25% of the buckets were going empty.
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
* hw/Makefile.am:
|
||||||
|
* hw/*/Makefile.am:
|
||||||
|
Bug #4190: Add a rule for 'make relink' since automake sucks.
|
||||||
|
|
||||||
2005-12-26 Daniel Stone <daniel@freedesktop.org>
|
2005-12-26 Daniel Stone <daniel@freedesktop.org>
|
||||||
|
|
||||||
* xkb/xkbInit.c:
|
* xkb/xkbInit.c:
|
||||||
|
|
|
@ -110,3 +110,7 @@ DIST_SUBDIRS = \
|
||||||
Xprint \
|
Xprint \
|
||||||
XpConfig \
|
XpConfig \
|
||||||
lbx
|
lbx
|
||||||
|
|
||||||
|
# gross hack
|
||||||
|
relink: all
|
||||||
|
$(MAKE) -C hw relink
|
||||||
|
|
|
@ -28,3 +28,6 @@ SUBDIRS = \
|
||||||
$(DMX_SUBDIRS)
|
$(DMX_SUBDIRS)
|
||||||
|
|
||||||
DIST_SUBDIRS = dmx xfree86 vfb xnest xwin darwin
|
DIST_SUBDIRS = dmx xfree86 vfb xnest xwin darwin
|
||||||
|
|
||||||
|
relink:
|
||||||
|
for i in $(SUBDIRS) ; do $(MAKE) -C $$i relink ; done
|
||||||
|
|
|
@ -106,3 +106,6 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
|
||||||
sed $(MAN_SUBSTS) < $< > $@
|
sed $(MAN_SUBSTS) < $< > $@
|
||||||
|
|
||||||
EXTRA_DIST = $(appman_PRE)
|
EXTRA_DIST = $(appman_PRE)
|
||||||
|
|
||||||
|
relink:
|
||||||
|
rm -f Xdmx && $(MAKE) Xdmx
|
||||||
|
|
|
@ -42,3 +42,6 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man
|
||||||
$(LN_S) $< $@
|
$(LN_S) $< $@
|
||||||
|
|
||||||
EXTRA_DIST = Xvfb.man.pre
|
EXTRA_DIST = Xvfb.man.pre
|
||||||
|
|
||||||
|
relink:
|
||||||
|
rm -f Xvfb && $(MAKE) Xvfb
|
||||||
|
|
|
@ -72,3 +72,6 @@ optionsdir = $(libdir)/X11
|
||||||
dist_options_DATA = Options
|
dist_options_DATA = Options
|
||||||
|
|
||||||
EXTRA_DIST = xorgconf.cpp
|
EXTRA_DIST = xorgconf.cpp
|
||||||
|
|
||||||
|
relink:
|
||||||
|
rm -f Xorg && $(MAKE) Xorg
|
||||||
|
|
|
@ -86,3 +86,6 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man
|
||||||
.man.$(APP_MAN_SUFFIX):
|
.man.$(APP_MAN_SUFFIX):
|
||||||
-rm -f $@
|
-rm -f $@
|
||||||
$(LN_S) $< $@
|
$(LN_S) $< $@
|
||||||
|
|
||||||
|
relink:
|
||||||
|
rm -f Xnest && $(MAKE) Xnest
|
||||||
|
|
|
@ -191,3 +191,6 @@ EXTRA_DIST = \
|
||||||
xlaunch/window/window.h \
|
xlaunch/window/window.h \
|
||||||
xlaunch/window/wizard.cc \
|
xlaunch/window/wizard.cc \
|
||||||
xlaunch/window/wizard.h
|
xlaunch/window/wizard.h
|
||||||
|
|
||||||
|
relink:
|
||||||
|
rm -f XWin && $(MAKE) XWin
|
||||||
|
|
Loading…
Reference in New Issue