+++ /dev/null
-Jongman Park <jman.park@samsung.com>
-Ja-young Gu <jygu@samsung.com>
-Kyeongchul Kim <kyeongchul.kim@samsung.com>
-DongHoo Park <donghoo.park@samsung.>
-Youngman Park <youngman.park@samsung.com>
-Inho Oh <inho48.oh@samsung.com>
+++ /dev/null
-TARGET = nv_validation_test
-
-SRCS = main.c ../src/nvdata.c
-OBJS = $(SRCS:.c=.o)
-PKGS = tcore glib-2.0 gobject-2.0
-
-CC = gcc
-CFLAGS = -Wall -g `pkg-config --cflags $(PKGS)` -I../include
-LIBS = `pkg-config --libs $(PKGS)`
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
- $(CC) $(OBJS) $(LIBS) -o $(TARGET)
-
-.c.o: $(SRCS)
- $(CC) $(CFLAGS) -c $^ -o $@
-
-clean:
- rm -f $(OBJS) $(TARGET)
+++ /dev/null
-/**
- * tel-plugin-imcmodem
- *
- * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Contact: Ja-young Gu <jygu@samsung.com>
- *
- * PROPRIETARY/CONFIDENTIAL
- *
- * This software is the confidential and proprietary information of SAMSUNG ELECTRONICS ("Confidential Information").
- * You shall not disclose such Confidential Information and shall
- * use it only in accordance with the terms of the license agreement you entered into with SAMSUNG ELECTRONICS.
- * SAMSUNG make no representations or warranties about the suitability
- * of the software, either express or implied, including but not
- * limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement.
- * SAMSUNG shall not be liable for any damages suffered by licensee as
- * a result of using, modifying or distributing this software or its derivatives.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/time.h>
-#include <unistd.h>
-#include <glib.h>
-#include <glib-object.h>
-
-#include "../include/nvdata.h"
-
-int main(int arg, char **argv)
-{
-
- imcmodem_nvdata_init();
-
- printf("update!\n");
-
- imcmodem_nvdata_update_validation();
-
- return 0;
-}
-