Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-28 17:25:13 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-28 21:34:06 (GMT)
commitc8889ededc5762521067e1bc52183e540ec160f4 (patch)
treec2e859e17702d85844e49cbb13f50cf9ace0fcf4
parent7641836a3d17cf2be030f7a5f000e8a9b1a435ad (diff)
Move the client stuff to its own directory
Making space for the server.
-rw-r--r--.gitignore2
-rw-r--r--Makefile-client.am2
-rw-r--r--Makefile.am4
-rw-r--r--client/datastore.js (renamed from datastore.js)0
-rw-r--r--configure.ac5
5 files changed, 9 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 6047448..c4af67e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
Makefile
-Makefile.in
+Makefile*.in
aclocal.m4
autom4te.cache/
config.log
diff --git a/Makefile-client.am b/Makefile-client.am
new file mode 100644
index 0000000..ba6ffbe
--- /dev/null
+++ b/Makefile-client.am
@@ -0,0 +1,2 @@
+jsdir = $(pkgdatadir)
+js_DATA =$(CLIENTSRCDIR)/datastore.js
diff --git a/Makefile.am b/Makefile.am
index 12cb338..25a849c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,2 @@
-jsdir = $(pkgdatadir)
-js_DATA = datastore.js
+CLIENTSRCDIR=$(top_srcdir)/client
+include $(top_srcdir)/Makefile-client.am
diff --git a/datastore.js b/client/datastore.js
index 545bf55..545bf55 100644
--- a/datastore.js
+++ b/client/datastore.js
diff --git a/configure.ac b/configure.ac
index 305c840..ffff715 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,7 @@
AC_INIT([sugar-toolkit-html], [0.1], [dwnarvaez@gmail.com])
AM_INIT_AUTOMAKE([foreign])
-AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([
+Makefile
+Makefile-client
+])
AC_OUTPUT