diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-08 18:34:25 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-08 18:34:25 (GMT) |
commit | 918cc351d225376e3925e484a31513103b99ea0a (patch) | |
tree | b92a3e3a506e91d313d79b43ef175e48340b04df /pablo/Makefile.in | |
parent | 877defd1bb53ee21ec49df6a2eaf53c5920797db (diff) | |
download | hdf5-918cc351d225376e3925e484a31513103b99ea0a.zip hdf5-918cc351d225376e3925e484a31513103b99ea0a.tar.gz hdf5-918cc351d225376e3925e484a31513103b99ea0a.tar.bz2 |
[svn-r5053] Purpose:
Bug-ish Fix
Description:
"make check" would barf in this directory since there's not a
"check:" target.
Solution:
Added a ".PHONY" entry so that "make checks" and the like won't barf
when they enter the pablo directory.
Platforms tested:
Linux
Diffstat (limited to 'pablo/Makefile.in')
-rw-r--r-- | pablo/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pablo/Makefile.in b/pablo/Makefile.in index dd4eb91..91db581 100644 --- a/pablo/Makefile.in +++ b/pablo/Makefile.in @@ -147,10 +147,10 @@ distclean: clean maintainer-clean: distclean $(RM) *~ core core.* *.core *.bak *.contrib gmon.out - .c.lo: @$(LT_COMPILE) $(CFLAGS) $(CPPFLAGS) -c $(top_srcdir)/src/$*.c $< +.PHONY: all progs test _test check dep depend PABLO_INCLUDES=HDFentryNames.h HDFidList.h ProcIDs.h HDFTrace.h ProcTrace.h \ ProcTrace.inc |