r1807: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 28 Apr 2002 02:28:45 +0000 (02:28 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 28 Apr 2002 02:28:45 +0000 (02:28 +0000)
Makefile
Makefile.common
examples/Makefile
tests/Makefile

index 1845c530ba4d6c918ea2e44c65c1a20cd7cbd478..081302d0a0220134dcea781b2e9d82d3c13486bb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg, M.D.
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.40 2002/04/28 02:20:13 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.41 2002/04/28 02:28:45 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -26,7 +26,7 @@ all:
 
 .PHONY: distclean
 distclean: clean
-        ./debian/rules clean
+       ./debian/rules clean
 
 
 VERSION=$(shell cat VERSION)
index c496a02422468e4e2dd7ae0a99069ce2983ee9cd..03db66de45be996a621e11224e0a016b183b3762 100644 (file)
@@ -1,14 +1,14 @@
 all:
-       @echo "nothing to do"
+       
 
 .PHONY: clean
 clean:
-       rm -rf .bin
-       rm -f *.ufsl *.fsl *.fas *.x86f *.sparcf *.fasl *.err
-       rm -f *~ *.bak *.orig "#*" .#*
-       rm -f *.so *.a
+       @rm -rf .bin
+       @rm -f *.ufsl *.fsl *.fas *.x86f *.sparcf *.fasl 
+       @rm -f *~ *.bak *.orig *.err \#* .#*
+       @rm -f *.so *.a
 ifneq ($(SUBDIRS)$(DOCSUBDIRS),)
-       set -e; for i in $(SUBDIRS) $(DOCSUBDIRS); do \
+       @set -e; for i in $(SUBDIRS) $(DOCSUBDIRS); do \
                $(MAKE) -C $$i $@; done
 endif
 
index e4dcb262bd701910678a94722d04471c0b1cf3cc..2c3ee7ee1e93225babcc62c64b9a4fe101419dd9 100644 (file)
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.13 2002/04/28 02:20:13 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.14 2002/04/28 02:28:45 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -43,6 +43,7 @@ source=$(base).c
 object=$(base).o
 shared_lib=$(base).so
 
+.PHONY: all
 all: $(shared_lib)
 
 $(shared_lib): $(source) Makefile
@@ -50,8 +51,3 @@ $(shared_lib): $(source) Makefile
        gcc ${SHARED_LD_OPT} $(object) -o $(shared_lib)
        rm $(object)
 
-clean:
-       rm -f $(object) $(shared_lib)
-
-realclean: clean
-       rm -f *~
index e4dcb262bd701910678a94722d04471c0b1cf3cc..2c3ee7ee1e93225babcc62c64b9a4fe101419dd9 100644 (file)
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.13 2002/04/28 02:20:13 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.14 2002/04/28 02:28:45 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -43,6 +43,7 @@ source=$(base).c
 object=$(base).o
 shared_lib=$(base).so
 
+.PHONY: all
 all: $(shared_lib)
 
 $(shared_lib): $(source) Makefile
@@ -50,8 +51,3 @@ $(shared_lib): $(source) Makefile
        gcc ${SHARED_LD_OPT} $(object) -o $(shared_lib)
        rm $(object)
 
-clean:
-       rm -f $(object) $(shared_lib)
-
-realclean: clean
-       rm -f *~