Skip to content

Commit 5b166a9

Browse files
committed
Cleaned up dir
Added 'foreign' flag to AM_INIT_AUTOMAKE to ignore NEWS, AUTHORS, Changelog and README
1 parent a7e67a5 commit 5b166a9

File tree

10 files changed

+1601
-835
lines changed

10 files changed

+1601
-835
lines changed

ChangeLog

Whitespace-only changes.

Makefile.am

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
GITURL = https://github.com/mysqludf/lib_mysqludf_skeleton.git
21
lib_LTLIBRARIES = lib_mysqludf_skeleton.la
32
lib_mysqludf_skeleton_la_SOURCES = lib_mysqludf_skeleton.cc mysqludf.cc
43
lib_mysqludf_skeleton_la_CXXFLAGS = -DSTANDARD -DMYSQL_SERVER @MYSQL_CFLAGS@
@@ -18,10 +17,10 @@ installdb:
1817
$(MYSQL) < ./installdb.sql
1918

2019
uninstalldb:
21-
$(MYSQL) < ./uninstalldb.sql=
20+
$(MYSQL) < ./uninstalldb.sql
2221

2322
dist-hook:
24-
find $(distdir) -name .svn -o -name .DS_Store -o -name .cdtproject -o -name .project -o -name .settings -o *~ | xargs --no-run-if-empty rm -rf
23+
find $(distdir) -name .svn -o -name .git* -o -name .c9* -o -name .DS_Store -o -name .cdtproject -o -name .project -o -name .settings -o *~ | xargs --no-run-if-empty rm -rf
2524

2625
test:
2726
for i in `ls test/*.result | awk -F "." '{print $$1}'`; do echo "$$i"; $(MYSQLTEST) --result-file=$$i.result < $$i.test; done
@@ -32,10 +31,3 @@ test-results:
3231
test-clean:
3332
rm -f test/*.log test/*.reject
3433

35-
gh-pages:
36-
[ -e gh-pages ] || git clone -b gh-pages $(GITURL) gh-pages
37-
git clone https://github.com/mysqludf/mysqludf.github.com _tmp
38-
cp _tmp/_layouts/* gh-pages/_layouts
39-
cp _tmp/_inlcudes/* gh-pages/_includes
40-
rm -rf _tmp
41-

NEWS

Whitespace-only changes.

README

Whitespace-only changes.

AUTHORS README.md

File renamed without changes.

0 commit comments

Comments
 (0)