| OLD | NEW |
| (Empty) |
| 1 From thomas@otto.amantes Mon Feb 21 17:46:45 2005 | |
| 2 Return-Path: <thomas@otto.amantes> | |
| 3 Received: from otto.amantes (otto.amantes [127.0.0.1]) by otto.amantes | |
| 4 (8.13.1/8.13.1) with ESMTP id j1LGkjr3011986 for <thomas@localhost>; Mon
, | |
| 5 21 Feb 2005 17:46:45 +0100 | |
| 6 Message-Id: <200502211646.j1LGkjr3011986@otto.amantes> | |
| 7 From: Thomas Vander Stichele <thomas@otto.amantes> | |
| 8 To: thomas@otto.amantes | |
| 9 Subject: test1 s | |
| 10 Date: Mon, 21 Feb 2005 16:46:45 +0000 | |
| 11 X-Mailer: Python syncmail $Revision: 1.1 $ | |
| 12 <http://sf.net/projects/cvs-syncmail> | |
| 13 Content-Transfer-Encoding: 8bit | |
| 14 Mime-Version: 1.0 | |
| 15 | |
| 16 Update of /home/cvs/test/test1 | |
| 17 In directory otto.amantes:/home/thomas/dev/tests/cvs/test1 | |
| 18 | |
| 19 Added Files: | |
| 20 Tag: BRANCH-DEVEL | |
| 21 MANIFEST Makefile.am autogen.sh configure.in | |
| 22 Log Message: | |
| 23 stuff on the branch | |
| 24 | |
| 25 --- NEW FILE: Makefile.am --- | |
| 26 SUBDIRS = src | |
| 27 | |
| 28 # normally I wouldn't distribute autogen.sh and friends with a tarball | |
| 29 # but this one is specifically distributed for demonstration purposes | |
| 30 | |
| 31 EXTRA_DIST = autogen.sh | |
| 32 | |
| 33 # target for making the "import this into svn" tarball | |
| 34 test: | |
| 35 mkdir test | |
| 36 for a in `cat MANIFEST`; do \ | |
| 37 cp -pr $$a test/$$a; done | |
| 38 tar czf test.tar.gz test | |
| 39 rm -rf test | |
| 40 | |
| 41 --- NEW FILE: MANIFEST --- | |
| 42 MANIFEST | |
| 43 autogen.sh | |
| 44 configure.in | |
| 45 Makefile.am | |
| 46 src | |
| 47 src/Makefile.am | |
| 48 src/test.c | |
| 49 | |
| 50 --- NEW FILE: autogen.sh --- | |
| 51 #!/bin/sh | |
| 52 | |
| 53 set -x | |
| 54 | |
| 55 aclocal && \ | |
| 56 autoheader && \ | |
| 57 autoconf && \ | |
| 58 automake -a --foreign && \ | |
| 59 ./configure $@ | |
| 60 | |
| 61 --- NEW FILE: configure.in --- | |
| 62 dnl configure.ac for version macro | |
| 63 AC_INIT | |
| 64 | |
| 65 AM_CONFIG_HEADER(config.h) | |
| 66 | |
| 67 AM_INIT_AUTOMAKE(test, 0.0.0) | |
| 68 AC_PROG_CC | |
| 69 | |
| 70 AC_OUTPUT(Makefile src/Makefile) | |
| OLD | NEW |