浏览代码

Initial revision of cleanForDist.






git-svn-id: https://svn.microneil.com/svn/PKG-SNF4CGP-NIX/trunk@8 7ef522f6-be79-40a8-b7df-0a85b3383509
master
adeniz 15 年前
父节点
当前提交
e441a2cb4b
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15
    0
      SNF4CGP_Developer_Package/cleanForDist

+ 15
- 0
SNF4CGP_Developer_Package/cleanForDist 查看文件

@@ -0,0 +1,15 @@
#!/bin/sh
#
# Script to clean the developer distribution.
#
# This script removes all files that can be created. After running
# this script, you'd need to run 'autoreconf --install' before
# running './configure'.
#
# Copyright (C) 2009 ARM Research Labs, LLC
#
##############################################################################
make distclean
find . -name '*~' -exec rm {} \;
find . -name Makefile.in -exec rm {} \;
rm -rf config autom4te.cache configure config.h* aclocal.m4 snf4cgp-* CGPSNF-*

正在加载...
取消
保存