summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 257d52c..ab39296 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -95,8 +95,8 @@ H5Tinit.c: H5detect
## Use -g to force no optimization since many compilers (e.g., Intel) takes
## a long time to compile it with any optimization on. H5detect is used
## to generate H5Tinit.c once. So, optimization is not critical.
-H5detect: H5detect.lo
- $(CC) $(CFLAGS) $(CPPFLAGS) -g $(srcdir)/H5detect.c \
+H5detect: $(srcdir)/H5detect.c
+ $(CC) $(CFLAGS) $(CPPFLAGS) $(srcdir)/H5detect.c \
$(LDFLAGS) $(LIBS) -o $@