Skip to content

Commit

Permalink
Clean up autoconf
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkay committed Aug 18, 2011
1 parent 3629ae4 commit 552271d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4,955 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.#*
aclocal.m4
autom4te.cache
config.*
configure
Makefile
config.log
config.status
.*.swp
xmonad-log-applet
xmonad-log-applet.server
.*.swp
9 changes: 5 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2009 Adam Wick
Copyright (c) 2009,2010,2011 Adam Wick
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -13,9 +13,10 @@ are met:
the documentation and/or other materials provided with the
distribution.

* Neither the name of Adam Wick nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
* Neither the name of the copyright holders nor the names of
other contributors may be used to endorse or promote products
derived from this software without specific prior written
permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
Expand Down
10 changes: 10 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

test -n "$srcdir" || srcdir=$(dirname "$0")
test -n "$srcdir" || srcdir=.
(
cd "$srcdir" &&
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv -Wall
) || exit
test -n "$NOCONFIGURE" || "$srcdir/configure" --enable-maintainer-mode "$@"
Loading

0 comments on commit 552271d

Please sign in to comment.