New sample file. Likewise. Likewise. Likewise.
authorRaja R Harinath <harinath@src.gnome.org>
Thu, 19 Feb 1998 20:31:30 +0000 (20:31 +0000)
committerRaja R Harinath <harinath@src.gnome.org>
Thu, 19 Feb 1998 20:31:30 +0000 (20:31 +0000)
* autogen.sh: New sample file.
* configure.in: Likewise.
* Makefile.am: Likewise.
* README: Likewise.

svn path=/trunk/; revision=91

.cvsignore [new file with mode: 0644]
AUTHORS [new file with mode: 0644]
ChangeLog [new file with mode: 0644]
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
README [new file with mode: 0644]
acconfig.h [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.in [new file with mode: 0644]
stamp-h.in [new file with mode: 0644]
stamp.h.in [new file with mode: 0644]

diff --git a/.cvsignore b/.cvsignore
new file mode 100644 (file)
index 0000000..535e6a0
--- /dev/null
@@ -0,0 +1,9 @@
+Makefile.in
+Makefile
+aclocal.m4
+config.guess
+config.h.in
+config.sub
+configure
+ltconfig
+ltmain.sh
diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..3e88fab
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,7 @@
+1998-02-19  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * autogen.sh: New sample file.
+       * configure.in: Likewise.
+       * Makefile.am: Likewise.
+       * README: Likewise.
+
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..484f4cf
--- /dev/null
@@ -0,0 +1,11 @@
+## if <internationalization support>
+#SUBDIRS = po intl macros support # <your subdirs here>
+## else
+SUBDIRS = macros support # <your subdirs here>
+## endif
+
+## to automatically rebuild aclocal.m4 if any of the macros in
+## `macros/' change
+@MAINT@include macros/macros.dep
+@MAINT@macros/macros.dep: macros/Makefile.am
+@MAINT@        cd macros && $(MAKE) macros.dep
diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..f49049e
--- /dev/null
+++ b/README
@@ -0,0 +1,2 @@
+This directory contains sample files that should be in pretty much every
+GNOME application.
diff --git a/acconfig.h b/acconfig.h
new file mode 100644 (file)
index 0000000..18ea5c7
--- /dev/null
@@ -0,0 +1,3 @@
+#undef VERSION
+#undef PACKAGE
+#undef HAVE_LIBSM
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..ba239f3
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="Gnome Skeleton"
+
+(test -f $srcdir/configure.in \
+## put other tests here
+) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level $PKG_NAME directory"
+    exit 1
+}
+
+. $srcdir/macros/autogen.sh
diff --git a/configure.in b/configure.in
new file mode 100644 (file)
index 0000000..b618884
--- /dev/null
@@ -0,0 +1,36 @@
+AC_INIT(intl)
+
+AM_CONFIG_HEADER(config.h)
+AM_INIT_AUTOMAKE(gnome-common, 0.13)
+
+AM_MAINTAINER_MODE
+
+AM_ACLOCAL_INCLUDE(macros)
+
+GNOME_INIT
+
+AC_ISC_POSIX
+AC_PROG_CC
+AC_PROG_CPP
+AC_STDC_HEADERS
+AC_ARG_PROGRAM
+AM_PROG_LIBTOOL
+
+GNOME_SUPPORT_CHECKS
+
+dnl ## internationalization support
+dnl ALL_LINGUAS=""
+dnl AM_GNU_GETTEXT
+dnl AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)
+
+AC_OUTPUT(
+Makefile
+dnl ## internationalization support
+dnl po/Makefile.in
+dnl intl/Makefile
+macros/Makefile
+support/Makefile
+stamp.h)
+
+dnl ## internationalization support
+dnl stamp.h],[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
diff --git a/stamp-h.in b/stamp-h.in
new file mode 100644 (file)
index 0000000..9788f70
--- /dev/null
@@ -0,0 +1 @@
+timestamp
diff --git a/stamp.h.in b/stamp.h.in
new file mode 100644 (file)
index 0000000..e69de29