Skip to content

Commit

Permalink
add makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-k committed May 29, 2012
1 parent 8ae6a9f commit 175eee4
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 0 deletions.
Empty file added ChangeLog
Empty file.
17 changes: 17 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SUBDIRS = src

MAINTAINERCLEANFILES = \
Makefile.in \
aclocal.m4 \
config.guess \
config.h.in \
config.sub \
configure \
depcomp \
install-sh \
intltool-*.in \
libtool \
ltmain.sh \
missing \
mkinstalldirs

Empty file added NEWS
Empty file.
25 changes: 25 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="mate-icon-theme-faenza"

(test -f $srcdir/configure.ac) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
echo " top-level $PKG_NAME directory"
exit 1
}

which mate-autogen || {
echo "You need to install mate-common from the MATE Git"
exit 1
}

REQUIRED_AUTOMAKE_VERSION=1.9
USE_MATE2_MACROS=1
USE_COMMON_DOC_BUILD=yes

. mate-autogen

20 changes: 20 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.53)

AC_INIT([mate-icon-theme-faenza], [1.3.0], [http://www.mate-desktop.org])
AC_CONFIG_SRCDIR([matefaenza/index.theme])

AM_INIT_AUTOMAKE([1.9 tar-ustar foreign])

# Workaround to make aclocal get the right flags
AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")

# Define the toplevel path here
AC_SUBST(THEMEDIR, "\${datadir}/icons/matefaenza")

AC_CONFIG_FILES([
Makefile
matefaenza/Makefile
])

AC_OUTPUT

0 comments on commit 175eee4

Please sign in to comment.