diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-11-30 19:53:29 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-11-30 19:53:29 -0800 |
commit | 8956f63a941bf0a5f157d47b33e6221601a75040 (patch) | |
tree | 4ec252656fed543013f7cfe31142ec1e6fe8bc82 /os | |
parent | ee9bdd3f4a14a42fb0747acc420966f0f669129b (diff) |
Tell automake to STFU about the *.O files
automake will not stop whining about the *.O files not being in normal library
name format, so just tell automake they are PROGRAMS so it builds them without
bitching.
Diffstat (limited to 'os')
-rw-r--r-- | os/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/Makefile.am b/os/Makefile.am index 7381797ab..d8d1405ce 100644 --- a/os/Makefile.am +++ b/os/Makefile.am @@ -56,7 +56,7 @@ if XSERVER_DTRACE dtrace.o: $(top_srcdir)/dix/Xserver.d $(am_libos_la_OBJECTS) $(DTRACE) -G -C -o $@ -s $(top_srcdir)/dix/Xserver.d .libs/*.o ../dix/.libs/*.o -noinst_LIBRARIES = os.O +noinst_PROGRAMS = os.O os.O: dtrace.o $(am_libos_la_OBJECTS) ld -r -o $@ dtrace.o .libs/*.o |