Build system: Non-dtrace distcheck hacks

automake 1.10 really wants foo.c for foo.O, so give it some dummy files to
deal with if it really needs them.
This commit is contained in:
Daniel Stone 2007-08-01 08:10:38 +03:00
parent cacbdf18ee
commit 1ace9770fe
2 changed files with 10 additions and 1 deletions

View File

@ -57,3 +57,8 @@ noinst_PROGRAMS = dix.O
dix.O: dtrace-dix.o $(am_libdix_la_OBJECTS)
ld -r -o $@ .libs/*.o
endif
dix.c:
touch $@
CLEANFILES = dix.c

View File

@ -59,5 +59,9 @@ noinst_PROGRAMS = os.O
os.O: dtrace.o $(am_libos_la_OBJECTS)
ld -r -o $@ dtrace.o .libs/*.o
endif
os.c:
touch $@
CLEANFILES = os.c