From: Adam Tkac Date: Fri, 18 Apr 2008 13:57:22 +0000 (+0000) Subject: - added top-level configure.ac and Makefile.am to make "make dist" working X-Git-Tag: v0.0.90~384^2~11 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c526b83d8e523c4488747d0b4cd1a6337c10e6ce;p=tigervnc.git - added top-level configure.ac and Makefile.am to make "make dist" working git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2497 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 00000000..c52b3470 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = common unix diff --git a/configure.ac b/configure.ac new file mode 100644 index 00000000..c8937610 --- /dev/null +++ b/configure.ac @@ -0,0 +1,8 @@ +AC_PREREQ(2.61) +AC_INIT([tightvnc], [1.5.0a1], [http://www.tightvnc.com/bugs.html]) +AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) + +AC_CONFIG_SUBDIRS([common + unix]) + +AC_OUTPUT([Makefile]) diff --git a/unix/Makefile.am b/unix/Makefile.am index 59dbc221..246fbd70 100644 --- a/unix/Makefile.am +++ b/unix/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = ../common tx x0vncserver vncviewer vncpasswd po @VNCCONFIG_DIR@ +SUBDIRS = tx x0vncserver vncviewer vncpasswd po @VNCCONFIG_DIR@ ACLOCAL_AMFLAGS = -I m4 diff --git a/unix/configure.ac b/unix/configure.ac index 8c9d37d2..c0c2adfb 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -5,8 +5,6 @@ AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) AC_SUBST([COMMON_DIR], ['$(top_srcdir)/../common']) -AC_CONFIG_SUBDIRS([../common]) - dnl Checks for programs. AC_PROG_CC AC_PROG_CXX