MySmartUSB-MK3-Interface

MySmartUSB MK3 Interface
git clone git://xatko.vsos.ethz.ch/MySmartUSB-MK3-Interface.git
Log | Files | Refs

commit cb0c7415bbcf48df5d4ebb3ef7c5977574f7aeee
parent 3aafce4657fa6e39b07dd5b6ddebb33cef8888a1
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sat, 15 Dec 2012 16:02:01 +0100

Program renamed

Diffstat:
Makefile | 2+-
ctrl.c | 19-------------------
msif.c | 19+++++++++++++++++++
3 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,6 @@ CC = /usr/bin/gcc CFLAGS = -O2 -Iinclude -Wall -TARGET = ctrl +TARGET = msif LIBS = cmd.lo dev.lo log.lo com.lo option.lo cmd_dispatch.lo common.lo engine.lo SRCDIR=src .PHONY: $(TARGET) clean diff --git a/ctrl.c b/ctrl.c @@ -1,19 +0,0 @@ -/* - * MySmartUSB MK3 Interface - * - * @copyright: Copyright (c) 2012, Dominik Schmidt - * @author: Dominik Schmidt <das1993@hotmail.com> - * @version: 0.0.0 - * @license: CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/) - * -*/ -#include <engine.h> -#include <dev.h> -#include <com.h> -#include <unistd.h> -#include <common.h> -#include <stdio.h> -int main(int argc, char **argv){ - return engine_autorun(argc,argv); - return 0; -} diff --git a/msif.c b/msif.c @@ -0,0 +1,19 @@ +/* + * MySmartUSB MK3 Interface + * + * @copyright: Copyright (c) 2012, Dominik Schmidt + * @author: Dominik Schmidt <das1993@hotmail.com> + * @version: 0.0.0 + * @license: CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/) + * +*/ +#include <engine.h> +#include <dev.h> +#include <com.h> +#include <unistd.h> +#include <common.h> +#include <stdio.h> +int main(int argc, char **argv){ + return engine_autorun(argc,argv); + return 0; +}