diff options
author | Daniel Stone <daniel@fooishbar.org> | 2007-08-01 08:10:38 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2007-08-01 08:10:38 +0300 |
commit | 1ace9770fed4a2ba354ff06a96189428beb36088 (patch) | |
tree | c68dfecb2c28057f46ec1d82d9f1fbd8489ed33a /os | |
parent | cacbdf18ee771d43228c2e96e8ef9a32251ceb55 (diff) |
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.
Diffstat (limited to 'os')
-rw-r--r-- | os/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/os/Makefile.am b/os/Makefile.am index c5e7b0397..53b2d7f0c 100644 --- a/os/Makefile.am +++ b/os/Makefile.am @@ -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 |