Hi- The make uninstall target for myserver-0.9.2 doesn't work.
During 'make install', none of the files in the include directory or any of its subdirectories are installed into $(includedir), but, during 'make uninstall' it tries to remove them from $(includedir). In include/Makefile.am, you have install: # Do not do anything. You probably also need to add uninstall: # Do not do anything You might consider using the "noinst_" automake rule instead. For example, in include/base/Makefile.am, you could have. noinst_baseinclude_HEADERS = utility.h to keep that header from being installed. Thanks, Mike Gran
