diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-07-31 15:10:06 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-07-31 15:10:06 -0700 |
commit | 2a3855c57fbe42e3f9f26bc6b08a09f6471370ea (patch) | |
tree | 0320158b19796614476d9eb66d1b3c451c604573 /Makefile.am | |
parent | 54960fa52a4a890e127b5b58256acb702ba7839d (diff) | |
download | connman-2a3855c57fbe42e3f9f26bc6b08a09f6471370ea.tar.gz connman-2a3855c57fbe42e3f9f26bc6b08a09f6471370ea.tar.bz2 connman-2a3855c57fbe42e3f9f26bc6b08a09f6471370ea.zip |
Add skeleton for web service library
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 9b466445..28a2b979 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,6 +29,8 @@ gdhcp_sources = gdhcp/gdhcp.h gdhcp/common.h gdhcp/common.c gdhcp/client.c gresolv_sources = gresolv/gresolv.h gresolv/gresolv.c +gweb_sources = gweb/gweb.h gweb/gweb.c + if DATAFILES dbusdir = @DBUS_DATADIR@ @@ -48,8 +50,8 @@ noinst_PROGRAMS = sbin_PROGRAMS = src/connmand -src_connmand_SOURCES = $(gdbus_sources) $(gdhcp_sources) \ - $(gresolv_sources) $(builtin_sources) \ +src_connmand_SOURCES = $(gdbus_sources) $(gdhcp_sources) $(gresolv_sources) \ + $(gweb_sources) $(builtin_sources) \ src/main.c src/connman.h src/log.c src/selftest.c \ src/error.c src/plugin.c src/task.c src/element.c \ src/device.c src/network.c src/connection.c \ |