diff --git a/configure.ac b/configure.ac index ef833dd24..43b526cc5 100644 --- a/configure.ac +++ b/configure.ac @@ -155,6 +155,7 @@ AC_CONFIG_FILES([ js/Makefile js/misc/Makefile js/ui/Makefile + js/perf/Makefile js/prefs/Makefile src/Makefile tests/Makefile diff --git a/js/Makefile.am b/js/Makefile.am index ab54b60ab..142793cf6 100644 --- a/js/Makefile.am +++ b/js/Makefile.am @@ -1 +1 @@ -SUBDIRS = misc ui prefs +SUBDIRS = misc ui perf prefs diff --git a/js/perf/Makefile.am b/js/perf/Makefile.am new file mode 100644 index 000000000..e3dedc0aa --- /dev/null +++ b/js/perf/Makefile.am @@ -0,0 +1,4 @@ +jsperfdir = $(pkgdatadir)/js/perf + +dist_jsperf_DATA = \ + core.js diff --git a/js/ui/Makefile.am b/js/ui/Makefile.am index 57fb7f443..b701fc677 100644 --- a/js/ui/Makefile.am +++ b/js/ui/Makefile.am @@ -25,6 +25,7 @@ dist_jsui_DATA = \ panel.js \ placeDisplay.js \ runDialog.js \ + scripting.js \ search.js \ shellDBus.js \ statusMenu.js \