Move "examples" (which are really UI definition files) to /usr/share/xnec2c/

--- a/Makefile.am
+++ b/Makefile.am
@@ -62,7 +62,7 @@ install-data-local:
 	  $(install_sh_DATA) doc/$(PACKAGE).1.gz $(DESTDIR)$(mandir)/man1/; \
 	fi;
 	if test -d .$(PACKAGE)/; then \
-	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/;\
-	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/; \
+	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/$(PACKAGE)/;\
+	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/$(PACKAGE)/; \
 	fi;
 
--- a/Makefile.in
+++ b/Makefile.in
@@ -876,8 +876,8 @@ install-data-local:
 	  $(install_sh_DATA) doc/$(PACKAGE).1.gz $(DESTDIR)$(mandir)/man1/; \
 	fi;
 	if test -d .$(PACKAGE)/; then \
-	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/;\
-	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/; \
+	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/$(PACKAGE)/;\
+	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/$(PACKAGE)/; \
 	fi;
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
--- a/src/main.c
+++ b/src/main.c
@@ -81,14 +81,14 @@ main (int argc, char *argv[])
     bytes -= sizeof( "/bin/xnec2c" ) - 1;
     if( bytes < 1 )
     {
-      fprintf( stderr, "xnec2c: cannot create file path to examples/xnec2c.\n" );
+      fprintf( stderr, "xnec2c: cannot create file path to share/xnec2c.\n" );
       exit( -1 );
     }
 
     /* Create file path to xnec2c examples directory */
     exe_path[bytes] = '\0';
     Strlcpy( file_path, exe_path, sizeof(file_path) );
-    Strlcat( file_path, "/share/examples/xnec2c", sizeof(file_path) );
+    Strlcat( file_path, "/share/xnec2c", sizeof(file_path) );
     fprintf( stderr, "xnec2c: creating xnec2c config directory from: %s\n", file_path );
 
     /* Create system command to copy examples/xnec2c to ~/.xnec2c */
