summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.cvsignore9
-rw-r--r--AUTHORS0
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am11
-rw-r--r--NEWS0
-rw-r--r--README2
-rw-r--r--acconfig.h3
-rwxr-xr-xautogen.sh17
-rw-r--r--configure.in36
-rw-r--r--stamp-h.in1
-rw-r--r--stamp.h.in0
11 files changed, 86 insertions, 0 deletions
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..535e6a0
--- /dev/null
+++ b/.cvsignore
@@ -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
index 0000000..e69de29
--- /dev/null
+++ b/AUTHORS
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
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
index 0000000..484f4cf
--- /dev/null
+++ b/Makefile.am
@@ -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
index 0000000..e69de29
--- /dev/null
+++ b/NEWS
diff --git a/README b/README
new file mode 100644
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
index 0000000..18ea5c7
--- /dev/null
+++ b/acconfig.h
@@ -0,0 +1,3 @@
+#undef VERSION
+#undef PACKAGE
+#undef HAVE_LIBSM
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..ba239f3
--- /dev/null
+++ b/autogen.sh
@@ -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
index 0000000..b618884
--- /dev/null
+++ b/configure.in
@@ -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
index 0000000..9788f70
--- /dev/null
+++ b/stamp-h.in
@@ -0,0 +1 @@
+timestamp
diff --git a/stamp.h.in b/stamp.h.in
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/stamp.h.in