added examples
[libt2n] / examples-codegen / example1 / TODO
CommitLineData
208db683
JT
1- test using valgrind
2- lib name should be group name + suffix/prefix ?!
3 user should have complete control => no default suffix/perfix
4 headers should be installed in pkgincludedir? maybe yes on the other hand
5 the user can pass the directory to configure via --includedir
6- missing nodist_ problem:
7 we use an old automake version which doesn't support the nodist_ prefix
8 => make clean and make dist depend on generated sources
9 (i did not find a better solution)
10
11 (make clean now works twice because the example is now in its own package
12 and make clean is then able to create the files - just to remove them again ;-)
13
14- make distcheck from clean source not working? now it works (really strange)
15 it still sometimes does not work - after a make distclean? yes
16 this does not work:
17 dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake distcheck
18 nor:
19 dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake clean && dmake distcheck
20 but this works:
21 dmake distclean && ./configure --prefix=/tmp/jens-delme/usr && dmake && dmake clean && dmake distcheck
22
23 the difference is in Makefile.in:
24 the version that works has dependencies added the other version doesn't have
25 (=> automake adds them?)