소스 검색

simplify "make clean" and remove unneeded lib dir from tree

the lib dir is automatically created if needed by the out-of-tree
build logic, and now that all generated files are in obj and lib,
deleting them is much simpler. using "rm -rf" is also more thorough,
as it picks up object files that were left around from source files
that no longer exist or which are no longer to be used because an
arch-specific replacement file was added or removed.
Rich Felker 9 년 전
부모
커밋
4fcc7eb51c
2개의 변경된 파일1개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 7
      Makefile
  2. 0 0
      lib/empty

+ 1 - 7
Makefile

@@ -82,13 +82,7 @@ $(OBJ_DIRS):
 install: install-libs install-headers install-tools
 
 clean:
-	rm -f obj/crt/*.o obj/crt/$(ARCH)/*.o
-	rm -f $(OBJS)
-	rm -f $(LOBJS)
-	rm -f $(ALL_LIBS) lib/*.[ao] lib/*.so
-	rm -f $(ALL_TOOLS)
-	rm -f $(GENH) $(GENH_INT)
-	rm -f obj/include/bits/alltypes.h
+	rm -rf obj lib
 
 distclean: clean
 	rm -f config.mak

+ 0 - 0
lib/empty