[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commits] r20639 - in /libdfp/trunk: ChangeLog Makefile.in TODO
- To: commits@xxxxxxxxxx
- Subject: [Commits] r20639 - in /libdfp/trunk: ChangeLog Makefile.in TODO
- From: ryanarn@xxxxxxxxxx
- Date: Wed, 12 Sep 2012 16:27:29 -0000
Author: ryanarn
Date: Wed Sep 12 16:27:28 2012
New Revision: 20639
Log:
2012-09-12 Ryan S. Arnold <rsa@xxxxxxxxxxxxxxxxxx>
* Makefile.in (distclean): Add as rule to remove files generated by
configure.
Modified:
libdfp/trunk/ChangeLog
libdfp/trunk/Makefile.in
libdfp/trunk/TODO
Modified: libdfp/trunk/ChangeLog
==============================================================================
--- libdfp/trunk/ChangeLog (original)
+++ libdfp/trunk/ChangeLog Wed Sep 12 16:27:28 2012
@@ -1,3 +1,8 @@
+2012-09-12 Ryan S. Arnold <rsa@xxxxxxxxxxxxxxxxxx>
+
+ * Makefile.in (distclean): Add as rule to remove files generated by
+ configure.
+
2012-08-08 Ryan S. Arnold <rsa@xxxxxxxxxxxxxxxxxx>
* README.user: Added new section on compliance With ISO/IEC TR 24732,
Modified: libdfp/trunk/Makefile.in
==============================================================================
--- libdfp/trunk/Makefile.in (original)
+++ libdfp/trunk/Makefile.in Wed Sep 12 16:27:28 2012
@@ -403,9 +403,41 @@
.PHONY: check
clean:
- rm *.o *.os $(STATIC_LIB) $(SHARED_LINKERNAME_LIB) $(SHARED_SONAME_LIB) $(SHARED_REALNAME_LIB) Versions.all Versions.sysdeps libdfp.map Versions.tmp sysd-versions $(top_builddir)/$(dfp_backend)/*.o $(top_builddir)/$(dfp_backend)/*.a debug-test.conf $(addsuffix .out,$(libdfp_tests)) $(addsuffix .conf,$(libdfp_tests)) $(addsuffix .gdb,$(libdfp_tests)) $(libdfp_tests)
+ rm -f *.o
+ rm -f *.os
+ rm -f $(STATIC_LIB)
+ rm -f $(SHARED_LINKERNAME_LIB)
+ rm -f $(SHARED_SONAME_LIB)
+ rm -f $(SHARED_REALNAME_LIB)
+ rm -f Versions.all
+ rm -f Versions.sysdeps
+ rm -f libdfp.map
+ rm -f Versions.tmp
+ rm -f sysd-versions
+ rm -f debug-test.conf
+ rm -f $(addsuffix .out,$(libdfp_tests))
+ rm -f $(addsuffix .conf,$(libdfp_tests))
+ rm -f $(addsuffix .gdb,$(libdfp_tests))
+ rm -f $(libdfp_tests)
+ rm -f $(top_builddir)/$(dfp_backend)/*.o
+ rm -f $(top_builddir)/$(dfp_backend)/*.a
.PHONY: clean
+
+# distclean cleans up the files added by configure.
+distclean:
+ rm -f $(top_builddir)/config.h
+ rm -f $(top_builddir)/config.log
+ rm -f $(top_builddir)/config.status
+ rm -f $(top_builddir)/Makefile
+ rm -f $(top_builddir)/$(dfp_backend)/config.h
+ rm -f $(top_builddir)/$(dfp_backend)/config.log
+ rm -f $(top_builddir)/$(dfp_backend)/config.status
+ rm -f $(top_builddir)/$(dfp_backend)/gstdint.h
+ rm -f $(top_builddir)/$(dfp_backend)/Makefile
+ rm -f $(top_builddir)/$(dfp_backend)/stamp-h1
+
+.PHONY: distclean
install: all install-readme install-headers
$(INSTALL) -d $(inst_libdir)
@@ -415,14 +447,6 @@
$(INSTALL) -t $(inst_libdir) $(top_builddir)/$(SHARED_REALNAME_LIB)
ln -f -s $(SHARED_REALNAME_LIB) $(inst_libdir)/$(SHARED_LINKERNAME_LIB)
$(LDCONFIG) -l $(inst_libdir)/$(SHARED_REALNAME_LIB)
-# $(INSTALL) -d $(inst_includedir)
-# $(INSTALL) -d $(inst_includedir)/dfp
-# $(INSTALL) -d $(inst_includedir)/dfp/decimal
-# $(INSTALL) -t $(inst_includedir)/dfp $(top_srcdir)/dfp/*.h
-# $(INSTALL) -t $(inst_includedir)/dfp/decimal/ $(top_srcdir)/dfp/decimal/*
-# #$(INSTALL) -d $(inst_docdir)dfp/
-# #$(INSTALL) -t $(inst_docdir)dfp/ $(top_srcdir)/README.user
-# #mv $(inst_docdir)dfp/README.user $(inst_docdir)dfp/README
.PHONY: install
install-headers:
Modified: libdfp/trunk/TODO
==============================================================================
--- libdfp/trunk/TODO (original)
+++ libdfp/trunk/TODO Wed Sep 12 16:27:28 2012
@@ -14,28 +14,11 @@
Add printf_dfp test which change the rounding mode.
-[DONE] Configure runtime test for decimal floating point support in compiler.
-
-[DONE] Configure test for glibc 2.10 headers.
-
-[DONE] Configure runtime test for glibc 2.10 based on register_printf_type()
-function..
-
Add --with-cross feature to prevent the make check suite from being executed
on the build machine.
Add --export-test feature to export the test-suite into stand-alone static
test cases.
-
-[DONE] If system glibc is 2.10 then make check shouldn't need all the GLIBC build
-scaffolding for executing and debugging tests.
-
-[DONE] Clear up make clean
-
-Work on make distclean.
-
-[DONE] Clear up dependency issue so that libdfp.so.1 is rebuilt when a .c
-file changes.
Finish make check test suite.
@@ -50,8 +33,25 @@
Implement libbid backend for x86_64.
-[DONE] Write User's guide
-
Write Man Page
Write User's guide in docbook format, .i.e. info file.
+
+[DONE] Configure runtime test for decimal floating point support in compiler.
+
+[DONE] Configure test for glibc 2.10 headers.
+
+[DONE] Configure runtime test for glibc 2.10 based on register_printf_type()
+function..
+
+[DONE] Write User's guide
+
+[DONE] If system glibc is 2.10 then make check shouldn't need all the GLIBC build
+scaffolding for executing and debugging tests.
+
+[DONE] Clear up make clean
+
+[DONE] Work on make distclean.
+
+[DONE] Clear up dependency issue so that libdfp.so.1 is rebuilt when a .c
+file changes.
_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits