X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=example-codegen%2FREADME;h=2fe7e02bed2cd6a43102cc868b3042c62bebea3e;hp=08ce9d133a36b4f215baad9b1b2d82ecb69bd7d5;hb=7f43535628b782bd82c4fbdd1b8f23d7782b0337;hpb=ad17f52360ddd6f3fa75be5cc7baf72c5dc8e59f diff --git a/example-codegen/README b/example-codegen/README index 08ce9d1..2fe7e02 100644 --- a/example-codegen/README +++ b/example-codegen/README @@ -3,12 +3,18 @@ This example may be build during the build of libt2n or it may be build seperate installed version of libt2n. To build it seperately using a installed version of libt2n: -autoreconf -i && ./configure && make && make distcheck +autoreconf && ./configure && make && make distcheck -if it does not work try something like: +if it does not work you may have to move the example-codegen out of the libt2n directory and +pass some options to autoreconf +I use something like: tar xzvf libt2n-0.1.tar.gz mv libt2n-0.1/example-codegen . cd example-codegen -# get configure script created and missing autotools stuff -aclocal && automake -a && autoreconf -i +# get configure script created and missing autotools helper files installed +# if you installed libt2n in some non-standard directory you might have to pass +# -M pathtolibt2n.m4 +autoreconf -f -i ./configure && make && make distcheck + +tar xzvf libt2n-0.1.tar.gz && mv libt2n-0.1/example-codegen . && cd example-codegen && autoreconf -f -i -M /tmp/jens-delme/usr/share/aclocal && ./configure && dmake && dmake distcheck