diff --git a/Makefile.am b/Makefile.am index dee4dc77..d89c47e7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -341,16 +341,17 @@ unit_test_caif_SOURCES = unit/test-caif.c $(gatchat_sources) \ unit_test_caif_LDADD = @GLIB_LIBS@ unit_objects += $(unit_test_caif_OBJECTS) -noinst_PROGRAMS += gatchat/gsmdial gatchat/test-server +noinst_PROGRAMS += gatchat/gsmdial gatchat/test-server gatchat/test-qcdm gatchat_gsmdial_SOURCES = gatchat/gsmdial.c $(gatchat_sources) - gatchat_gsmdial_LDADD = @GLIB_LIBS@ gatchat_test_server_SOURCES = gatchat/test-server.c $(gatchat_sources) - gatchat_test_server_LDADD = @GLIB_LIBS@ -lutil +gatchat_test_qcdm_SOURCES = gatchat/test-qcdm.c $(gatchat_sources) +gatchat_test_qcdm_LDADD = @GLIB_LIBS@ + DISTCHECK_CONFIGURE_FLAGS = --disable-datafiles diff --git a/gatchat/test-qcdm.c b/gatchat/test-qcdm.c new file mode 100644 index 00000000..ca304bcf --- /dev/null +++ b/gatchat/test-qcdm.c @@ -0,0 +1,29 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2010 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +int main(int argc, char **argv) +{ + return 0; +}