* */Makefile.in: removed annoying warning:
[fw/sdcc] / device / lib / Makefile.in
index b704d3bbe64d4566db9af604c56f3ade9b2bbdd1..d0c5d41bf8e18c1e5c77b531e61fb6993e901f94 100644 (file)
@@ -47,7 +47,7 @@ lib_dir_suffix  = @lib_dir_suffix@
 sdcc_libdir     = $(DESTDIR)$(datadir)/$(lib_dir_suffix)
 
 CPPFLAGS        = -I$(INCDIR) -I$(PORTINCDIR)
-CFLAGS         = $(MODELFLAGS) --nostdinc --std-sdcc99
+CFLAGS         = $(MODELFLAGS) --nostdinc --std-c99
 
 BUILDDIR        = build
 # Default
@@ -355,13 +355,13 @@ install: all installdirs
            \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \
            -name '*.lst' -o -name '*.asm' -o -name '.svn' -o -name 'build' -o -name 'bin' -o \
            -name 'Makefile*' \) \
-           -exec rm -r {} \; ; \
+           -exec rm -rf {}+ \; ; \
        done
        find $(sdcc_libdir)/src/mcs51 -depth \
          \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \
          -name '*.lst' -o -name '.svn' -o -name 'build' -o -name 'bin' -o \
          -name 'Makefile*' \) \
-         -exec rm -r {} \;
+         -exec rm -rf {}+ \;
 
 # Deleting all the installed files
 # --------------------------------
@@ -405,7 +405,7 @@ Makefile.dep: $(SOURCES) $(INCDIR)/*.h $(PORTINCDIR)/*.h
 
 ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs checkconf \
                                    clean distclean mostlyclean realclean)" ""
-  include Makefile.dep
+  -include Makefile.dep
 endif
 include $(srcdir)/clean.mk