"make dist" problem...

2007-01-18 Thread Enrico
wengine.c\ dama.c\ engine.h\ engine.c\ callback.h\ callback.c --- Many thanks for the help! Enrico

Re: "make dist" problem...

2007-01-18 Thread Enrico
distdir="$distdir/$subdir" \ distdir) \ || exit 1; \ fi; \ done make[1]: Entering directory `/home/aragorn/Desktop/DAMA/src' srcdirstrip=`echo "." | sed 's|.|.|g'`; \ topsrcdirstrip=`echo ".." | sed 's|.|.|g'`; \ list='./Makefile.am ./Makefile.in ./config.h.in TODO drawengine.h drawengine.c dama.c engine.h engine.c callback.h callback.c '; for file in $list; do \ case $file in \ Thanks again! Enrico

Re: "make dist" problem...

2007-01-18 Thread Enrico
Ralf Wildenhues ha scritto: M4 strips leading white space in macro arguments, but not trailing white space. Cheers, Ralf I've tried it and now all works well! Thanks for the help! Enrico

Re: $(datadir) and @datadir@

2007-02-13 Thread Enrico
rg/LDP/abs/html/varsubn.html Bye Enrico

software build

2003-03-30 Thread Enrico Weigelt
wn in this abstract notation and follows some rules implied by this, automatic processings, like compilation, installation, removal, dependency- & compatibility-checks can be done automatically quite easy. I'd like to invite you to this project. cu -- Enrico Weigelt, ceo me

Desktop file and exec path

2007-02-04 Thread Enrico Sardi
Hi all! Is there a way to set the "Exec" path in a .desktop file from an automake variable? Many thanks! Enrico

Re: Desktop file and exec path

2007-02-08 Thread Enrico Sardi
Ralf Wildenhues pronuncio' le seguenti parole il 05/02/2007 20:35: Hello Enrico, * Enrico Sardi wrote on Sun, Feb 04, 2007 at 11:56:07PM CET: Is there a way to set the "Exec" path in a .desktop file from an automake variable? I don't understand this question, s

$(datadir) and @datadir@

2007-02-08 Thread Enrico Sardi
Hi all, I've read autoconf and automake manuals but I've not yet fully understand a thing...what's the difference between writing $(datadir) and @datadir@ in a makefile.am? Many thanks Enrico

Re: Desktop file and exec path

2007-02-08 Thread Enrico Sardi
Hi! I've tried with the code above and it works... Thanks! Enrico

Different CFLAGS for some source-files

2002-03-13 Thread Enrico Scholz
to circumvent compiler-bugs or '-fomit-frame-poiner' in a memory-debugger implementation). I know about 'foo_CFLAGS' but this would set flags for a.c also. Does there exists an "official" solution for this problem? Thanks Enrico

How to make Make make all my source files

2002-06-14 Thread Enrico Ng
I would like to have my Makefile (made from autoconf/automake) beable to just look at what files are in my source folder and compile all of them. basicaly add all the sources files to _SOURCE Now, I have configure crudely generate a list then include it with the Makefile. Does anyone know of a

Generating HeaderFiles

2002-07-08 Thread Enrico Ng
I am trying to make an automake file to create libtool libraries. The problem is that the libraries I would like to create depend on header files that have to generated. How do I do this in automake?

linking with libtool

2002-07-17 Thread Enrico Ng
I am using the sun CC compiler, not the gnu one so when I add the runpath, I use -R instead of -Wl,--rpath. The problem is that libtool changes all my -R's to -Wl,--rpath causing the linking to fail. How might I fix this problem?