diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2012-06-23 08:55:13 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-06-23 08:55:13 +0000 |
commit | fe3d6e5f53fa7b954a560c6c49974efb49b47008 (patch) | |
tree | c0f4e0f8714eceaf2fab2aeb9317a2511a1ed511 /libtest | |
parent | e1862a3f956d0346084a3d4b0d3acc5101a95f93 (diff) |
Fixed from Sebastian Pipping:
* make sure that example.{c,h} are not installed twice
which causes an error for "make install"
* make sure that libhttrack.la is a proper dependency so that
parallel compilation (e.g. "make -j6" works reliably)
Diffstat (limited to 'libtest')
-rw-r--r-- | libtest/Makefile.am | 2 | ||||
-rw-r--r-- | libtest/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libtest/Makefile.am b/libtest/Makefile.am index eb500c0..d7c8309 100644 --- a/libtest/Makefile.am +++ b/libtest/Makefile.am @@ -1,6 +1,6 @@ exemplesdir = $(datadir)/httrack/libtest -exemples_DATA = example.* *.c *.h *.txt +exemples_DATA = *.c *.h *.txt EXTRA_DIST = $(exemples_DATA) INCLUDES = \ diff --git a/libtest/Makefile.in b/libtest/Makefile.in index 8e5905f..ee7c86e 100644 --- a/libtest/Makefile.in +++ b/libtest/Makefile.in @@ -246,7 +246,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ exemplesdir = $(datadir)/httrack/libtest -exemples_DATA = example.* *.c *.h *.txt +exemples_DATA = *.c *.h *.txt EXTRA_DIST = $(exemples_DATA) INCLUDES = \ @DEFAULT_CFLAGS@ \ |